Browse Source

no message

featrue/v4.3
xpz2018 4 years ago
parent
commit
3eee0598b6
2 changed files with 16 additions and 1 deletions
  1. 15
      pages/bank/vindex/index.js
  2. 2
      project.config.json

15
pages/bank/vindex/index.js

@ -25,6 +25,21 @@ Page({
showActionSheet(e) {
this.data.nowIndex = e.currentTarget.dataset.index
if (this.data.nowIndex < 0) {
if(!app.globalData.userInfo.isAuth){
$wuxDialog().open({
resetOnClose: true,
title: '温馨提示',
content: '您还没有进行个人信息认证,无法绑定银行卡,现在去进行个人信息认证?',
buttons: [{
text: '确定',
type: 'primary',
onTap(e) {
wx.navigateTo({ url: '/pages/home/idcard/index' })
}
}]
})
return
}
wx.navigateTo({ url: '/pages/bank/create/index' })
return
}

2
project.config.json

@ -40,7 +40,7 @@
"minifyWXSS": true
},
"compileType": "miniprogram",
"libVersion": "2.16.0",
"libVersion": "2.17.0",
"appid": "wx7a4a8415e6821108",
"projectname": "zhitongbao-mini",
"debugOptions": {

Loading…
Cancel
Save