Commit fc9c5908 authored by 我在何方's avatar 我在何方

商品超限异常审核详情优化

parent 2c4473f1
......@@ -21,8 +21,9 @@
</el-descriptions-item>
</el-descriptions>
<div v-for="(row,index) in orderItemData" :key="row.orderItemId">
<div style="font-weight:600;font-size:14px;margin-bottom:10px">品名{{parseInt(index)+1}}{{$l(row, 'prodTitle')}}</div>
<div v-if="row.charging ==1" class="price_list">
<span>品名{{parseInt(index)+1}}{{$l(row.prodTitle, 'desc')}}</span>
<span>旧成交价:</span>
<div>
<div v-if="!row.freightFee">
......@@ -174,17 +175,23 @@ export default {
if(this.orderExceptionData.orderExceptionRemark){
this.orderExceptionData.orderExceptionRemark=JSON.parse(this.orderExceptionData.orderExceptionRemark)
}
if(res.data.oldPriceJson){
this.orderItemData = JSON.parse(res.data.oldPriceJson)
}
if(res.data.orderId){
getOrder(res.data.orderId).then(res => {
this.order = res.data
this.orderItemData.map(v=>{
let item = this.order.orderItemVOList.find(vs=>vs.orderItemId==v.orderItemId)
if(item){
v.prodTitleZh = item.prodTitleZh
v.prodTitleEn = item.prodTitleEn
}
})
this.getExceptionPriceList(res.data.orderId)
})
}
console.log(res.data)
if(res.data.oldPriceJson){
this.orderItemData = JSON.parse(res.data.oldPriceJson)
console.log(this.orderItemData)
}
})
},
getProdAtrr(ids){
......
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