|
@@ -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
|
|
}
|
|
}
|
|
})
|
|
})
|