Browse Source

会员端:会员报单支付方式bugfix

kevinElken 1 year ago
parent
commit
7b3cecbd09
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/views/user/welcome-pack.vue

+ 2 - 1
src/views/user/welcome-pack.vue

@@ -687,7 +687,8 @@ export default {
       // 余额是否充足
       if ((this.form.payType === 'cash') && ((amountBalance - this.payAmount) < 0)) {
         // 账户类型提示信息
-        const account = this.payList.filter(item => {
+        const payListArray = Array.from(this.form.payType)
+        const account = payListArray.filter(item => {
           return this.form.payType === item.label
         })
         const accountType = account[0] && account[0].name || ''