From 6f6f12a27cb378ebfa22525d2945804c9cffc7dd Mon Sep 17 00:00:00 2001
From: jiangping <jp@doumee.com>
Date: 星期六, 25 一月 2025 09:43:21 +0800
Subject: [PATCH] 最新版本541200007

---
 h5/pages/staff/index.vue |   37 ++++++++++++++++++++++++++-----------
 1 files changed, 26 insertions(+), 11 deletions(-)

diff --git a/h5/pages/staff/index.vue b/h5/pages/staff/index.vue
index 489dbec..17ea5a9 100644
--- a/h5/pages/staff/index.vue
+++ b/h5/pages/staff/index.vue
@@ -1,10 +1,10 @@
 <template>
 	<view class="main_app">
 		<view class="title_wrap">
-			<view class="name" v-if="userInfo.realname">{{ userInfo.realname || "" }}锛屾杩庣櫥褰曪綖</view>
+			<view class="name" v-if="userInfo.realname">{{ userInfo.realname || userInfo.username || "" }}锛屾杩庣櫥褰曪綖</view>
 			<view class="name" v-else>璇峰厛鐧诲綍</view>
 			<view class="btn" @click="loginOut">{{
-				userInfo.realname ? "閫�鍑虹櫥褰�" : "鍘荤櫥褰�"
+				userInfo.username ? "璐﹀彿瑙g粦" : "鍘荤櫥褰�"
 			}}</view>
 		</view>
 		<view class="banner_wrap">
@@ -53,7 +53,8 @@
 		stagingHead,
 		wxAuthorize,
 		refreshToken,
-		app_url
+		app_url,
+		delHkUserOpenid
 	} from '@/api'
 	export default {
 		data() {
@@ -166,17 +167,31 @@
 
 			},
 			checkAuth(str) {
-				const permissions = this.userInfo.permissions
+				const permissions = this.userInfo.permissions || []
 				return permissions.indexOf(str) > -1
 			},
 			loginOut() {
 				logoutPost({
 					isH5: 1
-				}).then(res => {
-					this.$store.commit('empty')
-					setTimeout(() => {
-						window.location.href = app_url
-					}, 300)
+				}).then(res => {
+					const userInfo = uni.getStorageSync('userInfo')
+					const openId = uni.getStorageSync('openId')
+					this.$store.commit('empty')
+					if(openId){
+						delHkUserOpenid({
+							userName: userInfo.username,
+							openId
+						}).then(ress => {
+							setTimeout(() => {
+								window.location.href = app_url
+							}, 300)
+						})
+					}else{
+						setTimeout(() => {
+							window.location.href = app_url
+						}, 300)
+					}
+					
 				})
 			},
 			getTaskInfo() {
@@ -211,9 +226,9 @@
 			width: 144rpx;
 			height: 56rpx;
 			border-radius: 36rpx;
-			border: 1rpx solid $uni-color-primary;
+			border: 1rpx solid #B2B2B2;
 			font-size: 26rpx;
-			color: $uni-color-primary;
+			color: #666666;
 			display: flex;
 			justify-content: center;
 			align-items: center;

--
Gitblit v1.9.3