|
|
|
@ -185,11 +185,11 @@
|
|
|
|
|
<inputView type="orderRemark" :placeholder="'订舱人说明或ESL BP CODE'" :parentVal="details.bookingEDIExt.orderRemark" @getInputChange="inputChange"/>
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<a-col :span="23">
|
|
|
|
|
<a-col :span="8">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
label="付款方"
|
|
|
|
|
:labelCol="{ xs: { span: 24 }, sm: { span: 3 } }"
|
|
|
|
|
:wrapperCol="{ xs: { span: 24 }, sm: { span: 21 } }"
|
|
|
|
|
:labelCol="{ xs: { span: 24 }, sm: { span: 9 } }"
|
|
|
|
|
:wrapperCol="{ xs: { span: 24 }, sm: { span: 15 } }"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="freightpayer"
|
|
|
|
|
>
|
|
|
|
@ -197,6 +197,17 @@
|
|
|
|
|
<inputView type="freightpayer" :parentVal="details.freightpayer" @getInputChange="inputChange"/>
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<a-col :span="8">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
label="第一层包装皮重"
|
|
|
|
|
:labelCol="{ xs: { span: 24 }, sm: { span: 9 } }"
|
|
|
|
|
:wrapperCol="{ xs: { span: 24 }, sm: { span: 15 } }"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="bookingEDIExt.kingTareweight"
|
|
|
|
|
>
|
|
|
|
|
<inputView type="kingTareweight" :parentVal="details.bookingEDIExt.kingTareweight" @getInputChange="inputChange"/>
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<a-col :span="23">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
label="委托方"
|
|
|
|
@ -515,7 +526,7 @@ export default {
|
|
|
|
|
this.details.bookingEDIExt.salerCodeName = val.split('|')[1]
|
|
|
|
|
},
|
|
|
|
|
inputChange ({ type, value }) {
|
|
|
|
|
const bookingEDIExtArr = ['sendCode', 'receiveCode', 'ediAttn', 'ediAttnTel', 'ediAttnMail', 'amsConsignee', 'amsNotifyParty', 'opEName', 'opTel', 'opEmail', 'goodsName', 'orderRemark', 'consigneeEdiCode', 'shipperEdiCode', 'notifyCdoe', 'emanifestHbl', 'acihbl']
|
|
|
|
|
const bookingEDIExtArr = ['sendCode', 'receiveCode', 'ediAttn', 'ediAttnTel', 'ediAttnMail', 'amsConsignee', 'amsNotifyParty', 'opEName', 'opTel', 'opEmail', 'goodsName', 'orderRemark', 'consigneeEdiCode', 'shipperEdiCode', 'notifyCdoe', 'emanifestHbl', 'acihbl', 'kingTareweight']
|
|
|
|
|
if (bookingEDIExtArr.includes(type)) {
|
|
|
|
|
this.details.bookingEDIExt[type] = value
|
|
|
|
|
// console.log(this.details.bookingEDIExt[type])
|
|
|
|
|