Commit 763c5060 authored by 我在何方's avatar 我在何方

不可出渠道异常修复

parent 905f9c75
...@@ -958,6 +958,7 @@ ...@@ -958,6 +958,7 @@
changeExceptionStatus(){ changeExceptionStatus(){
this.$set(this.handlerParams,'orderExceptionHandlerResult','') this.$set(this.handlerParams,'orderExceptionHandlerResult','')
}, },
//订单详情
getOrderData(){ getOrderData(){
getOrder(this.orderId).then(response => { getOrder(this.orderId).then(response => {
this.orderData = response.data this.orderData = response.data
...@@ -974,11 +975,11 @@ ...@@ -974,11 +975,11 @@
this.orderData.orderItemVOList.map(v=>{ this.orderData.orderItemVOList.map(v=>{
if(!v.oneSeaFreight){ if(!v.oneSeaFreight){
v.seaFreightCurrency = this.currencyList[0]['id'] v.seaFreightCurrency = this.currencyList[0]['id']
v.seaFreightVolume = this.unitList[0]['id'] v.seaFreightVolume = this.unitList[1]['id']
} }
if(!v.oneClearanceFreight){ if(!v.oneClearanceFreight){
v.clearanceFreightCurrency = this.currencyList[0]['id'] v.clearanceFreightCurrency = this.currencyList[0]['id']
v.clearanceFreightVolume = this.unitList[0]['id'] v.clearanceFreightVolume = this.unitList[1]['id']
} }
}) })
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment