This commit is contained in:
杨鹏
2025-10-10 17:23:24 +08:00
parent 052aec9a89
commit 1aba303ed9
24 changed files with 68 additions and 70 deletions
@@ -813,7 +813,7 @@
.xs-goods-price {
font-size: 30rpx;
color: $red;
color: $purple;
}
}
@@ -843,7 +843,7 @@
.sm-goods-price {
font-size: 30rpx;
color: $red;
color: $purple;
}
}
@@ -928,7 +928,7 @@
.lg-goods-price {
font-size: 30rpx;
color: $red;
color: $purple;
line-height: 36rpx;
}
@@ -984,7 +984,7 @@
.sl-goods-price {
font-size: 30rpx;
color: $red;
color: $purple;
line-height: 36rpx;
}
@@ -807,7 +807,7 @@
.xs-goods-price {
font-size: 30rpx;
color: $red;
color: $purple;
}
}
@@ -837,7 +837,7 @@
.sm-goods-price {
font-size: 30rpx;
color: $red;
color: $purple;
}
}
@@ -868,7 +868,7 @@
.md-goods-price {
font-size: 30rpx;
color: $red;
color: $purple;
line-height: 36rpx;
}
@@ -921,7 +921,7 @@
.lg-goods-price {
font-size: 30rpx;
color: $red;
color: $purple;
line-height: 36rpx;
}
@@ -977,7 +977,7 @@
.sl-goods-price {
font-size: 30rpx;
color: $red;
color: $purple;
line-height: 36rpx;
}
@@ -36,37 +36,37 @@
const list = [
{
url: '/pages/index/index',
icon: '/static/img/shop/tools/home.png',
icon: 'https://puton.huimeimeta.com/imgs/quick-enter-home.png',
title: '首页',
},
{
url: '/pages/index/search',
icon: '/static/img/shop/tools/search.png',
icon: 'https://puton.huimeimeta.com/imgs/quick-enter-search.png',
title: '搜索',
},
{
url: '/pages/index/user',
icon: '/static/img/shop/tools/user.png',
icon: 'https://puton.huimeimeta.com/imgs/quick-enter-user.png',
title: '个人中心',
},
{
url: '/pages/index/cart',
icon: '/static/img/shop/tools/cart.png',
icon: 'https://puton.huimeimeta.com/imgs/quick-enter-cart.png',
title: '购物车',
},
{
url: '/pages/user/goods-log',
icon: '/static/img/shop/tools/browse.png',
icon: 'https://puton.huimeimeta.com/imgs/quick-enter-browse.png',
title: '浏览记录',
},
{
url: '/pages/user/goods-collect',
icon: '/static/img/shop/tools/collect.png',
icon: 'https://puton.huimeimeta.com/imgs/quick-enter-collect.png',
title: '我的收藏',
},
{
url: '/pages/chat/index',
icon: '/static/img/shop/tools/service.png',
icon: 'https://puton.huimeimeta.com/imgs/quick-enter-chat.png',
title: '客服',
},
];
@@ -444,7 +444,7 @@
.price-text {
font-size: 30rpx;
font-weight: 500;
color: $red;
color: $purple;
font-family: OPPOSANS;
&::before {
@@ -369,7 +369,7 @@
.price-text {
font-size: 30rpx;
font-weight: 500;
color: $red;
color: $purple;
font-family: OPPOSANS;
}
+10 -8
View File
@@ -317,16 +317,18 @@
width: 356rpx;
height: 80rpx;
border-radius: 40rpx 0 0 40rpx;
background-color: var(--ui-BG-Main-light);
color: var(--ui-BG-Main);
background-color: #fff;
color: $purple;
border: 1px solid $purple;
}
.buy-btn {
width: 356rpx;
height: 80rpx;
border-radius: 0 40rpx 40rpx 0;
background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
color: #fff;
background: $purple;
color: $white;
border: 1px solid $purple;
}
.score-btn {
@@ -380,21 +382,21 @@
.score-text {
font-size: 30rpx;
font-weight: 500;
color: $red;
color: $purple;
font-family: OPPOSANS;
}
.price-text {
font-size: 30rpx;
font-weight: 500;
color: $red;
color: $purple;
font-family: OPPOSANS;
&::before {
content: '¥';
font-size: 30rpx;
font-weight: 500;
color: $red;
color: $purple;
}
}
@@ -445,7 +447,7 @@
height: fit-content;
padding: 2rpx 10rpx;
background-color: rgb(255, 242, 241);
color: #ff2621;
color: $purple;
font-size: 24rpx;
margin-left: 5rpx;
}
+1 -1
View File
@@ -7,7 +7,7 @@ $gold: #fbbd08; // 明黄
$green: #8dc63f; // 橄榄绿
$cyan: #1cbbb4; // 天青
$blue: #0081ff; // 海蓝
$purple: #6739b6; // 姹紫
$purple: #9251EB; // 姹紫
$brightRed: #e54d42; // 嫣红
$forestGreen: #39b54a; // 森绿
$mauve: #9c26b0; // 木槿
+6 -5
View File
@@ -12,11 +12,12 @@ const sys = defineStore({
getters: {},
actions: {
setTheme(theme = '') {
if (theme === '') {
this.theme = app().template?.basic.theme || 'orange';
} else {
this.theme = theme;
}
// if (theme === '') {
// this.theme = app().template?.basic.theme || 'orange';
// } else {
// this.theme = theme;
// }
this.theme = 'purple'
},
},
persist: {