From 4f5cbfb0878d0d35ce01b7c32ade1807c067fd27 Mon Sep 17 00:00:00 2001
From: xuxueyang <xuxy@fengyuntec.com>
Date: 星期四, 19 九月 2024 16:12:43 +0800
Subject: [PATCH] add 签到和其他页面细节

---
 pages/user/supplier-user.vue |   38 +++++++++++++++++++++++++++++++++++---
 1 files changed, 35 insertions(+), 3 deletions(-)

diff --git a/pages/user/supplier-user.vue b/pages/user/supplier-user.vue
index 5befef5..f47291c 100644
--- a/pages/user/supplier-user.vue
+++ b/pages/user/supplier-user.vue
@@ -189,10 +189,11 @@
 					<view>我的服务</view>
 				</view>
 				<view class="flex service-icons-container">
-					<view class="service-icons" @click="goto('/sub_pages/customer/self/follow',true)">
-						<image src="../../static/images/customer/service/service-icon-1.png" class="service-icon ">
+					<view class="service-icons" @click="goto('/sub_pages/customer/self/sign',true)">
+						<image src="../../static/images/customer/coupon/icon-sign-home.png" class="service-icon ">
 						</image>
-						<view>关注店铺</view>
+						<view>签到</view>
+						<view v-if="!signToday" class="dot"></view>
 					</view>
 					<view class="service-icons" @click="goto('/sub_pages/customer/self/collect',true)">
 						<image src="../../static/images/customer/service/service-icon-2.png" class="service-icon ">
@@ -244,6 +245,25 @@
 					</view>
 					<!-- #endif -->
 				</view>
+
+				<!-- #ifdef PUB_CUSTOMER -->
+				<view class="flex service-icons-container">
+					<view class="service-icons" @click="goto('/sub_pages/customer/self/follow',true)">
+						<image src="../../static/images/customer/service/service-icon-1.png" class="service-icon ">
+						</image>
+						<view>关注店铺</view>
+					</view>
+					<view class="service-icons">
+
+					</view>
+					<view class="service-icons">
+
+					</view>
+					<view class="service-icons">
+
+					</view>
+				</view>
+				<!-- #endif -->
 			</view>
 		</view>
 		<!-- #endif -->
@@ -458,6 +478,7 @@
 				tj: {},
 				tj_order: {},
 				cacheUserId: '',
+				signToday: false
 				// order_pendding_num: 0,
 
 			};
@@ -513,6 +534,17 @@
 		onShow() {
 			this.cacheUserId = ''
 			this.getTj()
+			// #ifdef PUB_CUSTOMER
+			let that = this
+			this.$http.request('get', '/api/customer/point/sign/sign/today', {}).then(res => {
+				if (res.data) {
+					that.signToday = true
+				}
+			})
+
+			// #endif
+			//判断有没有签到
+
 		},
 		onLoad(options) {
 			// const url = options.q ? decodeURIComponent(options.q) : '';

--
Gitblit v1.9.3