فهرست منبع

贷款-上传资料页、预约时间

panyong 4 سال پیش
والد
کامیت
53468fb554
2فایلهای تغییر یافته به همراه15 افزوده شده و 2 حذف شده
  1. 8 1
      htmldev/loan/src/views/loan/attest/index.vue
  2. 7 1
      htmldev/loan/src/views/loan/bespeak/index.vue

+ 8 - 1
htmldev/loan/src/views/loan/attest/index.vue

@@ -88,9 +88,16 @@
             message: this.arrErrorList[0],
             forbidClick: true
           })
+          return
         }
         submitData(postData).then(res => {
-          this.$router.replace({ path: '/loan/detail' })
+          if (res.status) {
+            this.$router.replace({ path: `/loan/detail/${this.id}` })
+            return
+          }
+          Toast(res.msg)
+        }).catch(err => {
+          Toast(err.msg)
         })
       }
     }

+ 7 - 1
htmldev/loan/src/views/loan/bespeak/index.vue

@@ -115,7 +115,13 @@
           return
         }
         postBespeak(postData).then(res => {
-          this.$router.push({ path: `/loan/detail/${postData.id}` })
+          if (res.status) {
+            this.$router.push({ path: `/loan/detail/${postData.id}` })
+            return
+          }
+          Toast(res.msg)
+        }).catch(err => {
+          Toast(err.msg)
         })
       }
     }