mirror of
https://gitee.com/ShopeX/ECShopX_desktop-frontend
synced 2026-05-14 18:35:39 +08:00
fix(all): fix some bugs
This commit is contained in:
@@ -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>
|
### <p align="center">Desktop Frontend</p>
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 3.6 KiB |
@@ -4,8 +4,8 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="open-source-badge">
|
<div class="open-source-badge" @click="handleClick">
|
||||||
<img src="~/assets/imgs/powered-logo.png" alt="Powered by ECShopX" />
|
<img src="~/assets/imgs/powered-logo.png" alt="Powered by Shopex" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -14,6 +14,11 @@ export default {
|
|||||||
name: 'OpenSourceBadge',
|
name: 'OpenSourceBadge',
|
||||||
data() {
|
data() {
|
||||||
return {}
|
return {}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
handleClick() {
|
||||||
|
window.open('https://www.shopex.cn/', '_blank')
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
@@ -25,9 +30,15 @@ export default {
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 16px 0;
|
padding: 16px 0;
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: opacity 0.3s ease;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
opacity: 0.8;
|
||||||
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
max-width: 120px;
|
max-width: 160px;
|
||||||
height: auto;
|
height: auto;
|
||||||
object-fit: contain;
|
object-fit: contain;
|
||||||
}
|
}
|
||||||
@@ -37,12 +48,20 @@ export default {
|
|||||||
padding: 12px 0;
|
padding: 12px 0;
|
||||||
margin-top: 16px;
|
margin-top: 16px;
|
||||||
|
|
||||||
|
span {
|
||||||
|
font-size: 11px;
|
||||||
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
max-width: 100px;
|
max-width: 100px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 480px) {
|
@media (max-width: 480px) {
|
||||||
|
span {
|
||||||
|
font-size: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
max-width: 80px;
|
max-width: 80px;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user