|
@@ -3,7 +3,7 @@ const dev_baseUrl = 'http://192.168.11.17:14001/ma-meeting'; //测试
|
|
|
const pro_baseUrl = 'https://common.hz-hanghui.com:8087/ma-meeting'; //正式
|
|
|
|
|
|
//是否是正式环境
|
|
|
-const wx_rlxf =true
|
|
|
+const wx_rlxf = true
|
|
|
const baseUrl = wx_rlxf ? pro_baseUrl : dev_baseUrl;
|
|
|
|
|
|
//https请求
|
|
@@ -16,22 +16,22 @@ const request = e => {
|
|
|
method: e.method,
|
|
|
header: {
|
|
|
'content-type': e.type,
|
|
|
- 'Authorization': userInfo?userInfo.token:null,
|
|
|
+ 'Authorization': userInfo ? userInfo.token : null,
|
|
|
},
|
|
|
success: res => {
|
|
|
if (res.data.code == 200) {
|
|
|
resolve(res.data)
|
|
|
+ } else if (res.data.code == 401) {
|
|
|
+ wx.removeStorageSync('userInfo')
|
|
|
} else {
|
|
|
wx.showToast({
|
|
|
icon: 'none',
|
|
|
title: res.data.msg,
|
|
|
})
|
|
|
- reject(res.data)
|
|
|
};
|
|
|
},
|
|
|
fail: error => {
|
|
|
wx.hideLoading()
|
|
|
- reject(error.errMsg)
|
|
|
}
|
|
|
})
|
|
|
})
|