| | |
| | | " type="text" input-align="right" :disabled="true" /> |
| | | </u-form-item> |
| | | <view v-if=" |
| | | applyInfo.accountType === 'BANK_TRANSFER' && |
| | | applyInfo.applyRefundPrice != 0"> |
| | | applyInfo.accountType === 'BANK_TRANSFER'"> |
| | | <u-form-item label="银行开户行" :label-width="150"> |
| | | <u-input v-model="form.bankDepositName" type="text" input-align="right" placeholder="请输入银行开户行" /> |
| | | </u-form-item> |
| | |
| | | onShow() { |
| | | getSessionId().then(res=>{ |
| | | this.pageSessionNo = res.data.data |
| | | this.actionParam.sessionId = this.pageSessionNo |
| | | if(this.pageSessionNo){ |
| | | let param = Object.assign({}, this.actionParam); |
| | | param.sessionId = this.pageSessionNo |
| | | userAction(param) |
| | | } |
| | | }) |
| | |
| | | |
| | | console.log(this.form.accountType) |
| | | if (this.form.accountType == "BANK_TRANSFER") { |
| | | // 银行开户行校验 |
| | | if (this.$u.test.isEmpty(this.form.bankDepositName)) { |
| | | this.$refs.uToast.show({ |
| | | title: "请输入 银行开户行", |
| | | type: "error", |
| | | }); |
| | | return false; |
| | | } |
| | | // 银行开户名校验 |
| | | if (this.$u.test.isEmpty(this.form.bankAccountName)) { |
| | | this.$refs.uToast.show({ |
| | | title: "请输入 银行开户名", |
| | | type: "error", |
| | | }); |
| | | return false; |
| | | } |
| | | // 银行账号校验 |
| | | if (this.$u.test.isEmpty(this.form.bankAccountNumber)) { |
| | | this.$refs.uToast.show({ |
| | | title: "请输入 银行账号", |
| | | type: "error", |
| | | }); |
| | | return false; |
| | | } else if (this.$u.test.chinese(this.form.bankAccountName) === false) { |
| | | this.$refs.uToast.show({ |
| | | title: "银行开户名输入错误", |
| | | type: "error", |
| | | }); |
| | | return false; |
| | | } else if (this.$u.test.chinese(this.form.bankDepositName) === false) { |
| | | this.$refs.uToast.show({ |
| | | title: "银行开户行输入错误", |
| | | type: "error", |
| | | }); |
| | | return false; |
| | | } |
| | | // // 银行开户行校验 |
| | | // if (this.$u.test.isEmpty(this.form.bankDepositName)) { |
| | | // this.$refs.uToast.show({ |
| | | // title: "请输入 银行开户行", |
| | | // type: "error", |
| | | // }); |
| | | // return false; |
| | | // } |
| | | // // 银行开户名校验 |
| | | // if (this.$u.test.isEmpty(this.form.bankAccountName)) { |
| | | // this.$refs.uToast.show({ |
| | | // title: "请输入 银行开户名", |
| | | // type: "error", |
| | | // }); |
| | | // return false; |
| | | // } |
| | | // // 银行账号校验 |
| | | // if (this.$u.test.isEmpty(this.form.bankAccountNumber)) { |
| | | // this.$refs.uToast.show({ |
| | | // title: "请输入 银行账号", |
| | | // type: "error", |
| | | // }); |
| | | // return false; |
| | | // } else if (this.$u.test.chinese(this.form.bankAccountName) === false) { |
| | | // this.$refs.uToast.show({ |
| | | // title: "银行开户名输入错误", |
| | | // type: "error", |
| | | // }); |
| | | // return false; |
| | | // } else if (this.$u.test.chinese(this.form.bankDepositName) === false) { |
| | | // this.$refs.uToast.show({ |
| | | // title: "银行开户行输入错误", |
| | | // type: "error", |
| | | // }); |
| | | // return false; |
| | | // } |
| | | } |
| | | |
| | | return true; |