提交 a755c585918765b57e39949d45a874ab7cbea51c

作者 pangy
1 个父辈 bab549f2

银行卡开户行关联

... ... @@ -908,13 +908,23 @@ Page({
908 908 // this.showtoast('邮箱格式有误');
909 909 // return
910 910 // }
911   - if (formdata.bank_account && formdata.bank_account.length > 0 && !format.banknoCheck(formdata.bank_account)) {
912   - wx.showToast({
913   - title: '银行卡号格式有误',
914   - duration: 2000,
915   - icon: 'none'
916   - })
917   - return
  911 + if (formdata.bank_account && formdata.bank_account.length > 0) {
  912 + if (!format.banknoCheck(formdata.bank_account)){
  913 + wx.showToast({
  914 + title: '银行卡号格式有误',
  915 + duration: 2000,
  916 + icon: 'none'
  917 + })
  918 + return
  919 + }
  920 + if (!this.data.bankInfo.selected) {
  921 + wx.showToast({
  922 + title: '请选择开户银行',
  923 + duration: 2000,
  924 + icon: 'none'
  925 + })
  926 + return
  927 + }
918 928 }
919 929 this.goCommit(formdata);
920 930 // else if (this.data.personstatusData.selected.length < 1) {
... ...
注册登录 后发表评论