9.17提交

This commit is contained in:
zoujiandong
2025-09-17 09:24:02 +08:00
parent 7799c04883
commit 8883dded38
14 changed files with 152 additions and 62 deletions
+17 -1
View File
@@ -112,6 +112,21 @@ Page({
url: '/case/pages/bankCard/bankCard',
})
}),
isHasToken(){
let tokenStr=''
const { envVersion } = wx.getAccountInfoSync().miniProgram;
if(envVersion=="develop" || envVersion=="trial"){
tokenStr="DEV_CASE_TOKEN"
}else{
tokenStr="PROD_CASE_TOKEN"
}
let token = wx.getStorageSync(tokenStr);
if(token){
return true
}else {
return false
}
},
goDescription: throttle(function () {
app.method.navigateTo({
url: '/case/pages/agreement/agreement?type=description',
@@ -191,7 +206,8 @@ Page({
waitSubmitNum: 0
})
}
this.handleGetInfo();
this.handleGetInfo();
this.updateActive('center')
},