|
|
@ -25,6 +25,21 @@ Page({ |
|
|
showActionSheet(e) { |
|
|
showActionSheet(e) { |
|
|
this.data.nowIndex = e.currentTarget.dataset.index |
|
|
this.data.nowIndex = e.currentTarget.dataset.index |
|
|
if (this.data.nowIndex < 0) { |
|
|
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' }) |
|
|
wx.navigateTo({ url: '/pages/bank/create/index' }) |
|
|
return |
|
|
return |
|
|
} |
|
|
} |
|
|
|