Commit 7afbf640 authored by shenshaokai's avatar shenshaokai

Merge branch 'jinfa-20221102' into 'jinfa-20221102'

fix: bugId=37043 兼容生产环境目的港取值问题 See merge request project/jinfa-platform!496
parents d396db34 17f14d2c
......@@ -97,7 +97,7 @@ const FreightInfo = (props: any) => {
attrValueForm.validateFields().then(res => {
const arrivalArea = res.arrivalArea.split('_+_')
const arrivalPort = res.arrivalPort.split('_+_')
const destinationName = res.destination ? ((portList || []).find(item => item.code == res.destination)?.message || '') : ''
const destinationName = res.destination ? ((portList || []).find(item => item.code == res.destination)?.message || res.destination || '') : ''
resolve({
state: true,
name: 'freight',
......
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