From 8272afeeb75af3cc7e5a7c3e880957a8bcc6a140 Mon Sep 17 00:00:00 2001 From: huliyong <2783385703@qq.com> Date: Mon, 20 Jan 2025 16:50:19 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8A=E4=BC=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/couponPopup/couponPopup.vue | 2 +- components/user/productList.vue | 24 ++++++++++++++ pages/index/center.vue | 8 ++--- pages/index/index.vue | 4 +-- pages_order/components/product/submit.vue | 31 +++++++++++++----- pages_order/mine/promotion.vue | 25 ++------------- pages_order/order/orderDetail.vue | 10 ++++-- uni.scss | 2 +- utils/authorize.js | 53 +++++++++++++++++++++++++++++++ utils/index.js | 3 ++ 10 files changed, 122 insertions(+), 40 deletions(-) create mode 100644 utils/authorize.js diff --git a/components/couponPopup/couponPopup.vue b/components/couponPopup/couponPopup.vue index 1fa604e..19115f0 100644 --- a/components/couponPopup/couponPopup.vue +++ b/components/couponPopup/couponPopup.vue @@ -8,7 +8,7 @@ - + diff --git a/components/user/productList.vue b/components/user/productList.vue index 3a1e257..4863b94 100644 --- a/components/user/productList.vue +++ b/components/user/productList.vue @@ -8,6 +8,15 @@ {{ item.title }} + + + + {{ t }} + + @@ -88,6 +97,21 @@ height: 250rpx; border-radius: 20rpx; } + + .tag-list{ + display: flex; + flex-wrap: wrap; + padding: 6rpx 0; + .tag{ + padding: 6rpx 12rpx; + border-radius: 14rpx; + background-color: rgba($uni-color, 0.1); + color: $uni-color; + border: 1rpx solid $uni-color; + font-size: 20rpx; + margin: 6rpx; + } + } .product-info { font-size: 24rpx; diff --git a/pages/index/center.vue b/pages/index/center.vue index ba99b9c..16a3648 100644 --- a/pages/index/center.vue +++ b/pages/index/center.vue @@ -103,7 +103,7 @@ 我的团队 - + 联系客服 @@ -145,7 +145,7 @@ -
+ @@ -414,7 +414,7 @@ .money { font-size: 40rpx; - color: #DC2828; + color: $uni-color; font-weight: bold; } } diff --git a/pages/index/index.vue b/pages/index/index.vue index 659f5ed..2708143 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -3,7 +3,7 @@ - + @@ -320,7 +320,7 @@ .new-perple-top-left { display: flex; align-items: center; - color: #E7474C; + color: $uni-color; .title { font-size: 40rpx; diff --git a/pages_order/components/product/submit.vue b/pages_order/components/product/submit.vue index 0f55ab4..0a24ec4 100644 --- a/pages_order/components/product/submit.vue +++ b/pages_order/components/product/submit.vue @@ -1,20 +1,29 @@