Commit db3ccadd authored by leiqingsong's avatar leiqingsong

修改提现bug

parent 47fc8925
...@@ -48,7 +48,7 @@ export function sendSms(params) { ...@@ -48,7 +48,7 @@ export function sendSms(params) {
export function cashOut(params) { export function cashOut(params) {
return request({ return request({
url: "/bank/userWithdrawBank", url: "/bank/userWithdrawBank",
methods: "post", method: "post",
data: params data: params
}); });
} }
......
...@@ -202,6 +202,10 @@ export default { ...@@ -202,6 +202,10 @@ export default {
this.validCodeDialogShow = false; this.validCodeDialogShow = false;
}, },
onSubmit() { onSubmit() {
if (!this.validCode) {
this.$toast.fail('请输入验证码');
return;
}
this.validCodeDialogShow = false; this.validCodeDialogShow = false;
const params = { const params = {
code: this.validCode, code: this.validCode,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment