Commit e2ae143c authored by Marcus's avatar Marcus

【2.0-入仓修改审核】空运订单入仓修改审核页,出货方式取值是英文名称

https://zentao.test.jdshangmen.com/bug-view-4328.html
parent 243268c4
......@@ -208,6 +208,9 @@ export default {
}
},
computed:{
isChinese(){
return this.$i18n.locale === 'zh_CN'
},
currencyMap(){
return arrryToKeyedObjectBy(this.currencyList, 'id')
},
......@@ -249,7 +252,7 @@ export default {
return ''
},
selectChannel(val){
if(this.channelList.length > 0 && !!val) return this.channelList.find(e => e.channelId === val).nameEn
if(this.channelList.length > 0 && !!val) return this.channelList.find(e => e.channelId === val)[this.isChinese ? 'nameZh' : 'nameEn']
return ''
},
getDetails(){
......
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