From 05db93c48c69b1fc5db8bb2fce4c37014e92e450 Mon Sep 17 00:00:00 2001
From: doum <doum>
Date: 星期二, 19 八月 2025 10:01:30 +0800
Subject: [PATCH] 代码初始化
---
h5/utils/http.interceptor.js | 34 +++++++++++++++++++---------------
1 files changed, 19 insertions(+), 15 deletions(-)
diff --git a/h5/utils/http.interceptor.js b/h5/utils/http.interceptor.js
index 52941c5..9e914a5 100644
--- a/h5/utils/http.interceptor.js
+++ b/h5/utils/http.interceptor.js
@@ -16,7 +16,7 @@
Headtoken = vm.$store.state.userInfo.token
}
if (Headtoken) {
- config.header['web_token'] = Headtoken;
+ config.header['web-token'] = Headtoken;
}
return config
}, config => {
@@ -25,23 +25,37 @@
// 鍝嶅簲鎷︽埅鍣�
uni.$u.http.interceptors.response.use((response) => {
+ console.log(location.href.split('#')[1])
+ let pageUrl = location.href.split('#')[1]
uni.hideLoading();
// 鐧诲綍杩囨湡
if (response.data.code === 5112) {
uni.showToast({
title: '鐧诲綍杩囨湡锛屾鍦ㄩ噸鏂拌烦杞巿鏉�',
+ icon: 'none',
duration: 2000,
success() {
setTimeout(() => {
- let loc_href = encodeURIComponent("https://dmtest.ahapp.net/lianhelihua_web/")
- let corpId = 'wweea8f71b54e3b835';
- let agentId = '1000095';
- let wxUrl = `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${corpId}&redirect_uri=${loc_href}&response_type=code&scope=snsapi_base&state=#wechat_redirect`
+ let loc_href = encodeURIComponent("https://lkshereporting.unilever-china.com/lianhelihua_web/")
+ let corpId = 'ww08b163f924524474';
+ let agentId = '1000165';
+ let wxUrl = `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${corpId}&redirect_uri=${loc_href}&response_type=code&scope=snsapi_base&state=p_${pageUrl}#wechat_redirect`
location.href = wxUrl;
}, 1500)
}
})
return
+ }
+ if (response.data.message) {
+ const tm = response.data.message
+ const list = tm.split(' ')
+ let msg = list[0]
+ if (list.length > 1 && response.data.data) {
+ msg = decryptedData(list[1], list[0])
+ response.data.data = decryptedData(list[1], response.data.data)
+ console.log(response.data.data)
+ response.data.message = msg
+ }
}
if (response.data.code !== 200) {
uni.showToast({
@@ -50,16 +64,6 @@
duration: 2000
});
}
- // if (response.data.message) {
- // const tm = response.data.message
- // const list = tm.split(' ')
- // let msg = list[0]
- // if (list.length > 1 && response.data.data) {
- // msg = decryptedData(list[1], list[0])
- // response.data.data = decryptedData(list[1], response.data.data)
- // response.data.message = msg
- // }
- // }
return response.data;
}, (response) => {
return Promise.reject(response)
--
Gitblit v1.9.3