Selaa lähdekoodia

详情页接数据

panyong 4 vuotta sitten
vanhempi
commit
dd22eeffa9
1 muutettua tiedostoa jossa 3 lisäystä ja 1 poistoa
  1. 3 1
      htmldev/loan/src/views/loan/detail/index.vue

+ 3 - 1
htmldev/loan/src/views/loan/detail/index.vue

@@ -148,6 +148,7 @@
         orderNumber: '',
         orderFinalStatus: 0, // 订单最终状态: 0-进行中 1-成功 2-失败
         commanyPhone: '',
+        orderFinalRemark: '',
         checks: []
       }
     },
@@ -162,7 +163,7 @@
       funInit () {
         getOrderDetail(this.id).then(res => {
           if (res.status) {
-            const { orderProduceName, orderPrice, orderUserName, createdAt, orderNumber, orderFinalStatus, commanyPhone, checks } = res.data
+            const { orderProduceName, orderPrice, orderUserName, createdAt, orderNumber, orderFinalStatus, commanyPhone, orderFinalRemark, checks } = res.data
             this.orderProduceName = orderProduceName
             this.orderPrice = orderPrice
             this.orderUserName = orderUserName
@@ -170,6 +171,7 @@
             this.orderNumber = orderNumber
             this.orderFinalStatus = orderFinalStatus
             this.commanyPhone = commanyPhone
+            this.orderFinalRemark = orderFinalRemark
             this.checks = checks
           }
         })