Commit 8ff58146 authored by 黄卓's avatar 黄卓

入仓修改,审核页面的文案错误

http://zentao.jdshangmen.com/bug-view-1071.html
parent 431b54e9
...@@ -133,7 +133,7 @@ ...@@ -133,7 +133,7 @@
<div v-if="type === 4"> <div v-if="type === 4">
<p>申请理由</p> <p>申请理由</p>
<div> <div>
用户修改了订单中商品编号为【{{ FeeDetails.orderItemVOList[0].prodId }}】的【{{ FeeDetails.details.applyInfoVOList[0].newValue }}】信息: 用户修改了订单中商品编号为【{{ FeeDetails.orderItemVOList[0].prodId }}】的【{{ prodName }}】信息:
<ol> <ol>
<template v-for="item in FeeDetails.details.applyInfoVOList"> <template v-for="item in FeeDetails.details.applyInfoVOList">
<li v-if="item.orgValue === undefined">{{ item.name }}{{ item.newValue }}</li> <li v-if="item.orgValue === undefined">{{ item.name }}{{ item.newValue }}</li>
...@@ -184,7 +184,9 @@ export default { ...@@ -184,7 +184,9 @@ export default {
warehouseList:[], warehouseList:[],
channelList:[], channelList:[],
processInstanceID:undefined, processInstanceID:undefined,
list:[] list:[],
prodName: ''
} }
}, },
created() { created() {
...@@ -252,7 +254,10 @@ export default { ...@@ -252,7 +254,10 @@ export default {
getOrder(res.data.orderIds).then(r =>{ getOrder(res.data.orderIds).then(r =>{
this.FeeDetails = r.data this.FeeDetails = r.data
this.FeeDetails.details = JSON.parse(res.data.details) this.FeeDetails.details = JSON.parse(res.data.details)
// this.FeeDetails.details = res.data.details const orderItem = this.FeeDetails.orderItemVOList.find(e => e.brand === this.FeeDetails.details.brand)
if (orderItem){
this.prodName = orderItem.prodTitleZh + '(' + orderItem.prodTitleEn + ')'
}
}) })
}) })
break break
......
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