فهرست منبع

详情页接数据

panyong 4 سال پیش
والد
کامیت
dd22eeffa9
1فایلهای تغییر یافته به همراه3 افزوده شده و 1 حذف شده
  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: '',
         orderNumber: '',
         orderFinalStatus: 0, // 订单最终状态: 0-进行中 1-成功 2-失败
         orderFinalStatus: 0, // 订单最终状态: 0-进行中 1-成功 2-失败
         commanyPhone: '',
         commanyPhone: '',
+        orderFinalRemark: '',
         checks: []
         checks: []
       }
       }
     },
     },
@@ -162,7 +163,7 @@
       funInit () {
       funInit () {
         getOrderDetail(this.id).then(res => {
         getOrderDetail(this.id).then(res => {
           if (res.status) {
           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.orderProduceName = orderProduceName
             this.orderPrice = orderPrice
             this.orderPrice = orderPrice
             this.orderUserName = orderUserName
             this.orderUserName = orderUserName
@@ -170,6 +171,7 @@
             this.orderNumber = orderNumber
             this.orderNumber = orderNumber
             this.orderFinalStatus = orderFinalStatus
             this.orderFinalStatus = orderFinalStatus
             this.commanyPhone = commanyPhone
             this.commanyPhone = commanyPhone
+            this.orderFinalRemark = orderFinalRemark
             this.checks = checks
             this.checks = checks
           }
           }
         })
         })