|
|
|
@ -10,8 +10,8 @@
|
|
|
|
|
:model="details"
|
|
|
|
|
:rules="rules"
|
|
|
|
|
>
|
|
|
|
|
<a-row class="from-box" :gutter="10">
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="8" :xl="8">
|
|
|
|
|
<a-row class="from-box" >
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="{span: '4-8'}" :xl="{span: '4-8'}">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
prop="customername"
|
|
|
|
@ -41,19 +41,43 @@
|
|
|
|
|
</div>
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="8" :xl="8">
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="{span: '4-8'}" :xl="{span: '4-8'}">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="提单号"
|
|
|
|
|
prop="mblno"
|
|
|
|
|
prop="thirdPay"
|
|
|
|
|
label="第三方"
|
|
|
|
|
:labelCol="labelCol2"
|
|
|
|
|
:wrapperCol="wrapperCol2"
|
|
|
|
|
has-feedback
|
|
|
|
|
>
|
|
|
|
|
<inputView type="mblno" :parentVal="details.mblno" :ishd="ishd" @getInputChange="inputChange" />
|
|
|
|
|
<div class="customer-box" style="padding-right: 24px">
|
|
|
|
|
<selectView
|
|
|
|
|
type="thirdPay"
|
|
|
|
|
:defaultVal="details.thirdPay"
|
|
|
|
|
searchApi="DjyCustomerSuggest"
|
|
|
|
|
:searchQuery="{ keyword: '', type: 'consignor' }"
|
|
|
|
|
:showLabel="['shortName']"
|
|
|
|
|
:openSearch="true"
|
|
|
|
|
:isCopy="true"
|
|
|
|
|
@change="getSelectViewRes"
|
|
|
|
|
style="flex: 1; margin-top: -4px"
|
|
|
|
|
></selectView>
|
|
|
|
|
</div>
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="{span: '4-8'}" :xl="{span: '4-8'}">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="PO NO"
|
|
|
|
|
:labelCol="labelCol2"
|
|
|
|
|
:wrapperCol="wrapperCol2"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="pono"
|
|
|
|
|
>
|
|
|
|
|
<inputView type="pono" :parentVal="details.pono" @getInputChange="inputChange" />
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="8" :xl="8">
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="{span: '4-8'}" :xl="{span: '4-8'}">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="船公司"
|
|
|
|
@ -75,79 +99,86 @@
|
|
|
|
|
></selectView>
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="8" :xl="8">
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="{span: '4-8'}" :xl="{span: '4-8'}">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="订舱代理"
|
|
|
|
|
:labelCol="labelCol2"
|
|
|
|
|
:wrapperCol="wrapperCol2"
|
|
|
|
|
label="是否占舱"
|
|
|
|
|
:labelCol="{ xs: { span: 24 },
|
|
|
|
|
sm: { span: 9 },
|
|
|
|
|
md: { span: 9 }}"
|
|
|
|
|
:wrapperCol="{ xs: { span: 24 },
|
|
|
|
|
sm: { span: 12 },
|
|
|
|
|
md: { span: 12 }}"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="forwarder"
|
|
|
|
|
prop="zhanCangFlag"
|
|
|
|
|
>
|
|
|
|
|
<selectView
|
|
|
|
|
type="forwarder"
|
|
|
|
|
:defaultVal="details.forwarder"
|
|
|
|
|
searchApi="DjyCustomerSuggest"
|
|
|
|
|
:searchQuery="{ keyword: '', type: 'booking_agent' }"
|
|
|
|
|
:showLabel="['shortName']"
|
|
|
|
|
:openSearch="true"
|
|
|
|
|
@change="getSelectViewRes"
|
|
|
|
|
style="flex: 1; margin-top: -4px"
|
|
|
|
|
></selectView>
|
|
|
|
|
<div class="date-box">
|
|
|
|
|
<a-radio-group size="small" v-model="details.zhanCangFlag">
|
|
|
|
|
<a-radio size="small" value="是"> 是 </a-radio>
|
|
|
|
|
<a-radio size="small" value="否"> 否 </a-radio>
|
|
|
|
|
</a-radio-group>
|
|
|
|
|
</div>
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="8" :xl="8">
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="{span: '4-8'}" :xl="{span: '4-8'}">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="PO NO"
|
|
|
|
|
label="订舱编号"
|
|
|
|
|
:labelCol="labelCol2"
|
|
|
|
|
:wrapperCol="wrapperCol2"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="pono"
|
|
|
|
|
prop="custno"
|
|
|
|
|
>
|
|
|
|
|
<inputView type="pono" :parentVal="details.pono" @getInputChange="inputChange" />
|
|
|
|
|
<inputView type="custno" :parentVal="details.custno" @getInputChange="inputChange" />
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="8" :xl="8">
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="{span: '4-8'}" :xl="{span: '4-8'}">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="分提单号"
|
|
|
|
|
label="提单号"
|
|
|
|
|
prop="mblno"
|
|
|
|
|
:labelCol="labelCol2"
|
|
|
|
|
:wrapperCol="wrapperCol2"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="hblno"
|
|
|
|
|
>
|
|
|
|
|
<inputView type="hblno" :parentVal="details.hblno" @getInputChange="inputChange" />
|
|
|
|
|
<inputView type="mblno" :parentVal="details.mblno" :ishd="ishd" @getInputChange="inputChange" />
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="8" :xl="8">
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="{span: '4-8'}" :xl="{span: '4-8'}">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="订舱编号"
|
|
|
|
|
label="分提单号"
|
|
|
|
|
:labelCol="labelCol2"
|
|
|
|
|
:wrapperCol="wrapperCol2"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="custno"
|
|
|
|
|
prop="hblno"
|
|
|
|
|
>
|
|
|
|
|
<inputView type="custno" :parentVal="details.custno" @getInputChange="inputChange" />
|
|
|
|
|
<inputView type="hblno" :parentVal="details.hblno" @getInputChange="inputChange" />
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<template v-if="details.carrierid === 'ESL'">
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="8" :xl="8">
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="{span: '4-8'}" :xl="{span: '4-8'}">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="EP号"
|
|
|
|
|
label="订舱代理"
|
|
|
|
|
:labelCol="labelCol2"
|
|
|
|
|
:wrapperCol="wrapperCol2"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="epCode"
|
|
|
|
|
prop="forwarder"
|
|
|
|
|
>
|
|
|
|
|
<inputView type="epCode" :parentVal="details.epCode" @getInputChange="inputChange" />
|
|
|
|
|
<selectView
|
|
|
|
|
type="forwarder"
|
|
|
|
|
:defaultVal="details.forwarder"
|
|
|
|
|
searchApi="DjyCustomerSuggest"
|
|
|
|
|
:searchQuery="{ keyword: '', type: 'booking_agent' }"
|
|
|
|
|
:showLabel="['shortName']"
|
|
|
|
|
:openSearch="true"
|
|
|
|
|
@change="getSelectViewRes"
|
|
|
|
|
style="flex: 1; margin-top: -4px"
|
|
|
|
|
></selectView>
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-else>
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="8" :xl="8">
|
|
|
|
|
<template v-if="details.carrierid != 'ESL'">
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="{span: '4-8'}" :xl="{span: '4-8'}">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="运费协议号"
|
|
|
|
@ -173,32 +204,8 @@
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
</template>
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="8" :xl="8">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
prop="thirdPay"
|
|
|
|
|
label="第三方"
|
|
|
|
|
:labelCol="labelCol2"
|
|
|
|
|
:wrapperCol="wrapperCol2"
|
|
|
|
|
has-feedback
|
|
|
|
|
>
|
|
|
|
|
<div class="customer-box" style="padding-right: 24px">
|
|
|
|
|
<selectView
|
|
|
|
|
type="thirdPay"
|
|
|
|
|
:defaultVal="details.thirdPay"
|
|
|
|
|
searchApi="DjyCustomerSuggest"
|
|
|
|
|
:searchQuery="{ keyword: '', type: 'consignor' }"
|
|
|
|
|
:showLabel="['shortName']"
|
|
|
|
|
:openSearch="true"
|
|
|
|
|
:isCopy="true"
|
|
|
|
|
@change="getSelectViewRes"
|
|
|
|
|
style="flex: 1; margin-top: -4px"
|
|
|
|
|
></selectView>
|
|
|
|
|
</div>
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<template v-if="details.carrierid === 'ESL'">
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="8" :xl="7">
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="{span: '4-8'}" :xl="{span: '4-8'}">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="运费协议号"
|
|
|
|
@ -224,8 +231,22 @@
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-if="details.carrierid === 'ESL'">
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="{span: '4-8'}" :xl="{span: '4-8'}">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="EP号"
|
|
|
|
|
:labelCol="labelCol2"
|
|
|
|
|
:wrapperCol="wrapperCol2"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="epCode"
|
|
|
|
|
>
|
|
|
|
|
<inputView type="epCode" :parentVal="details.epCode" @getInputChange="inputChange" />
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-if="['VOLTA', 'WHL', 'CSL', 'MSC'].includes(details.carrierid)">
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="8" :xl="7">
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="{span: '4-8'}" :xl="{span: '4-8'}">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="真提单号"
|
|
|
|
@ -240,8 +261,34 @@
|
|
|
|
|
</template>
|
|
|
|
|
</a-row>
|
|
|
|
|
<div class="from-box2">
|
|
|
|
|
<a-row :gutter="6">
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="6" :xl="6">
|
|
|
|
|
<a-row >
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="{span: '4-8'}" :xl="{span: '4-8'}">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="开船日期"
|
|
|
|
|
:labelCol="{ xs: { span: 24 },
|
|
|
|
|
sm: { span: 8 },
|
|
|
|
|
md: { span: 8 }}"
|
|
|
|
|
:wrapperCol="{ xs: { span: 24 },
|
|
|
|
|
sm: { span: 12 },
|
|
|
|
|
md: { span: 12 }}"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="etd"
|
|
|
|
|
>
|
|
|
|
|
<div class="date-box">
|
|
|
|
|
<datePickerView
|
|
|
|
|
class="date-picker"
|
|
|
|
|
:parentVal="details.etd"
|
|
|
|
|
type="etd"
|
|
|
|
|
format="YYYY-MM-DD"
|
|
|
|
|
@dateChange="dateChangeFun"
|
|
|
|
|
style="margin-top: -5px"
|
|
|
|
|
></datePickerView>
|
|
|
|
|
<span class="week" v-if="etdWeek && etdWeek !== 'NaN'">W{{ etdWeek || '--' }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="{span: '4-8'}" :xl="{span: '4-8'}">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="船名"
|
|
|
|
@ -274,7 +321,7 @@
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<template v-if="details.carrierid === 'ESL'">
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="8" :lg="5" :xl="4">
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="8" :lg="{span: '4-8'}" :xl="{span: '4-8'}">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="内部航次"
|
|
|
|
@ -293,7 +340,7 @@
|
|
|
|
|
</a-col>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-else>
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="8" :lg="5" :xl="4">
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="8" :lg="{span: '4-8'}" :xl="{span: '4-8'}">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="内部航次"
|
|
|
|
@ -312,7 +359,7 @@
|
|
|
|
|
</a-col>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-if="details.carrierid === 'ESL'">
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="5" :xl="4">
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="{span: '4-8'}" :xl="{span: '4-8'}">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="航次"
|
|
|
|
@ -330,7 +377,7 @@
|
|
|
|
|
</a-col>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-else>
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="5" :xl="4">
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="{span: '4-8'}" :xl="{span: '4-8'}">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="海关航次"
|
|
|
|
@ -347,108 +394,7 @@
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
</template>
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="5" :xl="5">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="开船日期"
|
|
|
|
|
:labelCol="{ xs: { span: 24 },
|
|
|
|
|
sm: { span: 8 },
|
|
|
|
|
md: { span: 8 }}"
|
|
|
|
|
:wrapperCol="{ xs: { span: 24 },
|
|
|
|
|
sm: { span: 12 },
|
|
|
|
|
md: { span: 12 }}"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="etd"
|
|
|
|
|
>
|
|
|
|
|
<div class="date-box">
|
|
|
|
|
<datePickerView
|
|
|
|
|
class="date-picker"
|
|
|
|
|
:parentVal="details.etd"
|
|
|
|
|
type="etd"
|
|
|
|
|
format="YYYY-MM-DD"
|
|
|
|
|
@dateChange="dateChangeFun"
|
|
|
|
|
style="margin-top: -5px"
|
|
|
|
|
></datePickerView>
|
|
|
|
|
<span class="week" v-if="etdWeek && etdWeek !== 'NaN'">W{{ etdWeek || '--' }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="5" :xl="5">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="是否占舱"
|
|
|
|
|
:labelCol="{ xs: { span: 24 },
|
|
|
|
|
sm: { span: 9 },
|
|
|
|
|
md: { span: 9 }}"
|
|
|
|
|
:wrapperCol="{ xs: { span: 24 },
|
|
|
|
|
sm: { span: 12 },
|
|
|
|
|
md: { span: 12 }}"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="zhanCangFlag"
|
|
|
|
|
>
|
|
|
|
|
<!-- style="margin-left:10px;margin-top:-6px;" -->
|
|
|
|
|
<div class="date-box">
|
|
|
|
|
<!-- <a-checkbox size="small" v-model="details.zhanCangFlag">
|
|
|
|
|
<template v-if="details.zhanCangFlag">是</template>
|
|
|
|
|
<template v-else>否</template>
|
|
|
|
|
</a-checkbox> -->
|
|
|
|
|
<a-radio-group size="small" v-model="details.zhanCangFlag">
|
|
|
|
|
<a-radio size="small" value="是"> 是 </a-radio>
|
|
|
|
|
<a-radio size="small" value="否"> 否 </a-radio>
|
|
|
|
|
</a-radio-group>
|
|
|
|
|
</div>
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<!-- <template v-if="details.carrierid === 'ESL'">
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="8" :xl="5">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="实际开船"
|
|
|
|
|
:labelCol="labelCol"
|
|
|
|
|
:wrapperCol="wrapperCol"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="atd"
|
|
|
|
|
>
|
|
|
|
|
<div class="date-box">
|
|
|
|
|
<datePickerView
|
|
|
|
|
class="date-picker"
|
|
|
|
|
:parentVal="details.atd"
|
|
|
|
|
type="atd"
|
|
|
|
|
format="YYYY-MM-DD"
|
|
|
|
|
@dateChange="dateChangeFun"
|
|
|
|
|
style="margin-top: -5px;"
|
|
|
|
|
></datePickerView>
|
|
|
|
|
</div>
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
</template> -->
|
|
|
|
|
</a-row>
|
|
|
|
|
<a-row :gutter="10">
|
|
|
|
|
<!-- <template>
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="8" :xl="5">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="实际开船"
|
|
|
|
|
:labelCol="labelCol"
|
|
|
|
|
:wrapperCol="wrapperCol"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="atd"
|
|
|
|
|
>
|
|
|
|
|
<div class="date-box">
|
|
|
|
|
<datePickerView
|
|
|
|
|
class="date-picker"
|
|
|
|
|
:parentVal="details.atd"
|
|
|
|
|
type="atd"
|
|
|
|
|
format="YYYY-MM-DD"
|
|
|
|
|
@dateChange="dateChangeFun"
|
|
|
|
|
style="margin-top: -5px;"
|
|
|
|
|
></datePickerView>
|
|
|
|
|
</div>
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
</template> -->
|
|
|
|
|
<template>
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="8" :xl="6">
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="{span: '4-8'}" :xl="{span: '4-8'}">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="船司航线"
|
|
|
|
@ -461,71 +407,8 @@
|
|
|
|
|
<inputView type="lanename" :parentVal="details.lanename" @getInputChange="inputChange" />
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
</template>
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="8" :xl="6">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="船代"
|
|
|
|
|
:labelCol="labelCol"
|
|
|
|
|
:wrapperCol="wrapperCol"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="shipagency"
|
|
|
|
|
>
|
|
|
|
|
<selectView
|
|
|
|
|
ref="shipagency"
|
|
|
|
|
type="shipagency"
|
|
|
|
|
:defaultVal="details.shipagency"
|
|
|
|
|
searchApi="GetForwarderlist"
|
|
|
|
|
:searchQuery="{ KeyWord: '' }"
|
|
|
|
|
:showLabel="['name', 'showCode']"
|
|
|
|
|
:openSearch="true"
|
|
|
|
|
@change="getSelectViewRes"
|
|
|
|
|
></selectView>
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="8" :xl="6">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="航线"
|
|
|
|
|
:labelCol="labelCol"
|
|
|
|
|
:wrapperCol="wrapperCol"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="lineName"
|
|
|
|
|
>
|
|
|
|
|
<selectView
|
|
|
|
|
type="lineName"
|
|
|
|
|
:defaultVal="details.lineName"
|
|
|
|
|
searchApi="GetTenantLineList"
|
|
|
|
|
:searchQuery="{ LineName: '' }"
|
|
|
|
|
:showLabel="['name']"
|
|
|
|
|
:openSearch="false"
|
|
|
|
|
@change="getSelectViewRes"
|
|
|
|
|
></selectView>
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="8" :xl="6">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="业务来源"
|
|
|
|
|
:labelCol="labelCol"
|
|
|
|
|
:wrapperCol="wrapperCol"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="sourceName"
|
|
|
|
|
>
|
|
|
|
|
<selectView
|
|
|
|
|
type="sourceName"
|
|
|
|
|
:defaultVal="details.sourceName"
|
|
|
|
|
searchApi="BookingSourcePage"
|
|
|
|
|
:searchQuery="{ SearchValue: '' }"
|
|
|
|
|
:showLabel="['name']"
|
|
|
|
|
:openSearch="false"
|
|
|
|
|
@change="getSelectViewRes"
|
|
|
|
|
></selectView>
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
</a-row>
|
|
|
|
|
</div>
|
|
|
|
|
<a-row class="from-box3" :gutter="10">
|
|
|
|
|
<a-row :gutter="10">
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="8" :xl="4">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
@ -549,15 +432,15 @@
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="8" :xl="4">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="操作"
|
|
|
|
|
label="客服"
|
|
|
|
|
:labelCol="userLabelCol1"
|
|
|
|
|
:wrapperCol="userWrapperCol1"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="op"
|
|
|
|
|
prop="custservice"
|
|
|
|
|
>
|
|
|
|
|
<selectView
|
|
|
|
|
type="op"
|
|
|
|
|
:defaultVal="details.op"
|
|
|
|
|
type="custservice"
|
|
|
|
|
:defaultVal="details.custservice"
|
|
|
|
|
searchApi="GetSysUserPage"
|
|
|
|
|
:searchQuery="{ name: '' }"
|
|
|
|
|
:showLabel="['name']"
|
|
|
|
@ -569,15 +452,15 @@
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="8" :xl="4">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="单证"
|
|
|
|
|
label="操作"
|
|
|
|
|
:labelCol="userLabelCol1"
|
|
|
|
|
:wrapperCol="userWrapperCol1"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="doc"
|
|
|
|
|
prop="op"
|
|
|
|
|
>
|
|
|
|
|
<selectView
|
|
|
|
|
type="doc"
|
|
|
|
|
:defaultVal="details.doc"
|
|
|
|
|
type="op"
|
|
|
|
|
:defaultVal="details.op"
|
|
|
|
|
searchApi="GetSysUserPage"
|
|
|
|
|
:searchQuery="{ name: '' }"
|
|
|
|
|
:showLabel="['name']"
|
|
|
|
@ -589,15 +472,15 @@
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="8" :xl="4">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="客服"
|
|
|
|
|
label="单证"
|
|
|
|
|
:labelCol="userLabelCol1"
|
|
|
|
|
:wrapperCol="userWrapperCol1"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="custservice"
|
|
|
|
|
prop="doc"
|
|
|
|
|
>
|
|
|
|
|
<selectView
|
|
|
|
|
type="custservice"
|
|
|
|
|
:defaultVal="details.custservice"
|
|
|
|
|
type="doc"
|
|
|
|
|
:defaultVal="details.doc"
|
|
|
|
|
searchApi="GetSysUserPage"
|
|
|
|
|
:searchQuery="{ name: '' }"
|
|
|
|
|
:showLabel="['name']"
|
|
|
|
@ -648,32 +531,32 @@
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
</a-row>
|
|
|
|
|
<a-row class="from-box4" :gutter="10">
|
|
|
|
|
<a-col :xs="24" :sm="9" :md="9" :lg="9" :xl="9">
|
|
|
|
|
<a-row :gutter="10">
|
|
|
|
|
<a-col :xs="24" :sm="9" :md="9" :lg="9" :xl="8">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="单证备注"
|
|
|
|
|
label="操作备注"
|
|
|
|
|
:labelCol="labelCol3"
|
|
|
|
|
:wrapperCol="wrapperCol3"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="dzRemark"
|
|
|
|
|
prop="czRemark"
|
|
|
|
|
>
|
|
|
|
|
<inputView type="dzRemark" :parentVal="details.dzRemark" @getInputChange="inputChange" />
|
|
|
|
|
<inputView type="czRemark" :parentVal="details.czRemark" @getInputChange="inputChange" />
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<a-col :xs="24" :sm="9" :md="9" :lg="9" :xl="9">
|
|
|
|
|
<a-col :xs="24" :sm="9" :md="9" :lg="9" :xl="8">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="操作备注"
|
|
|
|
|
label="单证备注"
|
|
|
|
|
:labelCol="labelCol3"
|
|
|
|
|
:wrapperCol="wrapperCol3"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="czRemark"
|
|
|
|
|
prop="dzRemark"
|
|
|
|
|
>
|
|
|
|
|
<inputView type="czRemark" :parentVal="details.czRemark" @getInputChange="inputChange" />
|
|
|
|
|
<inputView type="dzRemark" :parentVal="details.dzRemark" @getInputChange="inputChange" />
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<a-col :xs="24" :sm="6" :md="6" :lg="6" :xl="6">
|
|
|
|
|
<a-col :xs="24" :sm="6" :md="6" :lg="6" :xl="8">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="申请箱使"
|
|
|
|
@ -686,10 +569,73 @@
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
</a-row>
|
|
|
|
|
<!-- <a-row :gutter="10">
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="8" :xl="6">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="船代"
|
|
|
|
|
:labelCol="labelCol"
|
|
|
|
|
:wrapperCol="wrapperCol"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="shipagency"
|
|
|
|
|
>
|
|
|
|
|
<selectView
|
|
|
|
|
ref="shipagency"
|
|
|
|
|
type="shipagency"
|
|
|
|
|
:defaultVal="details.shipagency"
|
|
|
|
|
searchApi="GetForwarderlist"
|
|
|
|
|
:searchQuery="{ KeyWord: '' }"
|
|
|
|
|
:showLabel="['name', 'showCode']"
|
|
|
|
|
:openSearch="true"
|
|
|
|
|
@change="getSelectViewRes"
|
|
|
|
|
></selectView>
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="8" :xl="6">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="航线"
|
|
|
|
|
:labelCol="labelCol"
|
|
|
|
|
:wrapperCol="wrapperCol"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="lineName"
|
|
|
|
|
>
|
|
|
|
|
<selectView
|
|
|
|
|
type="lineName"
|
|
|
|
|
:defaultVal="details.lineName"
|
|
|
|
|
searchApi="GetTenantLineList"
|
|
|
|
|
:searchQuery="{ LineName: '' }"
|
|
|
|
|
:showLabel="['name']"
|
|
|
|
|
:openSearch="false"
|
|
|
|
|
@change="getSelectViewRes"
|
|
|
|
|
></selectView>
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<a-col :xs="12" :sm="12" :md="12" :lg="8" :xl="6">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="业务来源"
|
|
|
|
|
:labelCol="labelCol"
|
|
|
|
|
:wrapperCol="wrapperCol"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="sourceName"
|
|
|
|
|
>
|
|
|
|
|
<selectView
|
|
|
|
|
type="sourceName"
|
|
|
|
|
:defaultVal="details.sourceName"
|
|
|
|
|
searchApi="BookingSourcePage"
|
|
|
|
|
:searchQuery="{ SearchValue: '' }"
|
|
|
|
|
:showLabel="['name']"
|
|
|
|
|
:openSearch="false"
|
|
|
|
|
@change="getSelectViewRes"
|
|
|
|
|
></selectView>
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
</a-row> -->
|
|
|
|
|
</div>
|
|
|
|
|
</a-form-model>
|
|
|
|
|
</div>
|
|
|
|
|
</x-card>
|
|
|
|
|
|
|
|
|
|
<a-modal
|
|
|
|
|
:title="customerType === 'add' ? '添加委托单位' : '关系人'"
|
|
|
|
|
:width="1200"
|
|
|
|
@ -1352,4 +1298,7 @@ export default {
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
|
@import url('../index.less');
|
|
|
|
|
@import url('../style/basicInfo.less');
|
|
|
|
|
.ant-col-xl-4-8{
|
|
|
|
|
width: 20%;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|