fix(all): fix some bugs

This commit is contained in:
lukaijie
2026-02-06 19:35:31 +08:00
parent 3f4862c305
commit 3d6e71ec5c
4 changed files with 23 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
<p align="center"><img width="600" height="416" alt="logo2" src="https://github.com/user-attachments/assets/abf6c4c7-8cb1-477e-aea4-9e526cd8225a" /></p>
<p align="center"><img width="600" height="416" alt="logo2" src="logo.png" /></p>
### <p align="center">Desktop Frontend</p>

BIN
logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@@ -4,8 +4,8 @@
*/
<template>
<div class="open-source-badge">
<img src="~/assets/imgs/powered-logo.png" alt="Powered by ECShopX" />
<div class="open-source-badge" @click="handleClick">
<img src="~/assets/imgs/powered-logo.png" alt="Powered by Shopex" />
</div>
</template>
@@ -14,6 +14,11 @@ export default {
name: 'OpenSourceBadge',
data() {
return {}
},
methods: {
handleClick() {
window.open('https://www.shopex.cn/', '_blank')
}
}
}
</script>
@@ -25,9 +30,15 @@ export default {
align-items: center;
padding: 16px 0;
margin-top: 20px;
cursor: pointer;
transition: opacity 0.3s ease;
&:hover {
opacity: 0.8;
}
img {
max-width: 120px;
max-width: 160px;
height: auto;
object-fit: contain;
}
@@ -37,12 +48,20 @@ export default {
padding: 12px 0;
margin-top: 16px;
span {
font-size: 11px;
}
img {
max-width: 100px;
}
}
@media (max-width: 480px) {
span {
font-size: 10px;
}
img {
max-width: 80px;
}