|
|
|
@ -149,114 +149,150 @@
|
|
|
|
|
</a-col>
|
|
|
|
|
<a-col class="right-content" :xs="24" :sm="24" :md="24" :lg="14" :xl="13">
|
|
|
|
|
<a-row :gutter="16">
|
|
|
|
|
<a-col :span="12">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label yarn-label"
|
|
|
|
|
label="场站"
|
|
|
|
|
:labelCol="labelCol"
|
|
|
|
|
:wrapperCol="wrapperCol"
|
|
|
|
|
has-feedback
|
|
|
|
|
style="overflow: visible"
|
|
|
|
|
prop="yard"
|
|
|
|
|
>
|
|
|
|
|
<div class="yard-box" style="display: flex">
|
|
|
|
|
<!-- <auto-complete
|
|
|
|
|
<div class="right-content-top" style="border-bottom:1px dashed #ddd;padding-bottom:4px;margin-bottom:4px; overflow:hidden;">
|
|
|
|
|
<a-col :span="12">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label yarn-label"
|
|
|
|
|
label="场站"
|
|
|
|
|
:labelCol="labelCol"
|
|
|
|
|
:wrapperCol="wrapperCol"
|
|
|
|
|
has-feedback
|
|
|
|
|
style="overflow: visible"
|
|
|
|
|
prop="yard"
|
|
|
|
|
>
|
|
|
|
|
<div class="yard-box" style="display: flex">
|
|
|
|
|
<!-- <auto-complete
|
|
|
|
|
:allowClear="true"
|
|
|
|
|
v-model="details.yard"
|
|
|
|
|
class="customer-input"
|
|
|
|
|
:data-source="yardDataArr"
|
|
|
|
|
@select="yardSelect"
|
|
|
|
|
@change="yardChange"
|
|
|
|
|
/> -->
|
|
|
|
|
<a-select
|
|
|
|
|
size="small"
|
|
|
|
|
class="customer-input"
|
|
|
|
|
:default-value="details.yard"
|
|
|
|
|
v-model="details.yard"
|
|
|
|
|
@change="debounce(handleYardChange, 300, $event)"
|
|
|
|
|
show-search
|
|
|
|
|
:filter-option="filterOption"
|
|
|
|
|
:dropdownMatchSelectWidth="false"
|
|
|
|
|
style="flex:1;"
|
|
|
|
|
>
|
|
|
|
|
<a-select-option v-for="(yard, yindex) in yardSelectData" :key="yindex" :value="yindex">
|
|
|
|
|
{{ yard.selectShowTab }}
|
|
|
|
|
</a-select-option>
|
|
|
|
|
</a-select>
|
|
|
|
|
<i class="iconfont icon-touxiang" style="margin: 0 4px" @click="changeYard('content')"></i>
|
|
|
|
|
<i class="iconfont icon-bianji1" @click="changeYard('remark')"></i>
|
|
|
|
|
<!-- <div class="feeself">
|
|
|
|
|
<a-button size="small" :type="details.feeself ? 'primary' : ''" @click="changeFeeself">自结</a-button>
|
|
|
|
|
</div> -->
|
|
|
|
|
<!-- <a-checkbox v-model="details.feeself"> 自结 </a-checkbox> -->
|
|
|
|
|
</div>
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<a-col :span="12">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="自结"
|
|
|
|
|
:labelCol="labelCol"
|
|
|
|
|
:wrapperCol="wrapperCol"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="feeself"
|
|
|
|
|
>
|
|
|
|
|
<a-radio-group size="small" v-model="details.feeself" @change="changeFeeself">
|
|
|
|
|
<a-radio size="small" :value="true">
|
|
|
|
|
是
|
|
|
|
|
</a-radio>
|
|
|
|
|
<a-radio size="small" :value="false">
|
|
|
|
|
否
|
|
|
|
|
</a-radio>
|
|
|
|
|
</a-radio-group>
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<a-col :span="12">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="报关行"
|
|
|
|
|
:labelCol="labelCol"
|
|
|
|
|
:wrapperCol="wrapperCol"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="customser"
|
|
|
|
|
>
|
|
|
|
|
<auto-complete
|
|
|
|
|
size="small"
|
|
|
|
|
:allowClear="true"
|
|
|
|
|
v-model="details.yard"
|
|
|
|
|
v-model="details.customser"
|
|
|
|
|
class="customer-input"
|
|
|
|
|
:data-source="yardDataArr"
|
|
|
|
|
@select="yardSelect"
|
|
|
|
|
@change="yardChange"
|
|
|
|
|
/> -->
|
|
|
|
|
<a-select
|
|
|
|
|
:data-source="customserDataArr"
|
|
|
|
|
:dropdown-match-select-width="false"
|
|
|
|
|
:dropdown-style="{ width: '200px' }"
|
|
|
|
|
@select="customserSelect"
|
|
|
|
|
@focus="customserChange"
|
|
|
|
|
@change="debounce(customserChange, 300, $event)"
|
|
|
|
|
/>
|
|
|
|
|
<!-- @change="customserChange" -->
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<a-col :span="12">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="车队"
|
|
|
|
|
:labelCol="labelCol"
|
|
|
|
|
:wrapperCol="wrapperCol"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="trucker"
|
|
|
|
|
>
|
|
|
|
|
<auto-complete
|
|
|
|
|
size="small"
|
|
|
|
|
:allowClear="true"
|
|
|
|
|
v-model="details.trucker"
|
|
|
|
|
class="customer-input"
|
|
|
|
|
:default-value="details.yard"
|
|
|
|
|
v-model="details.yard"
|
|
|
|
|
@change="debounce(handleYardChange, 300, $event)"
|
|
|
|
|
show-search
|
|
|
|
|
:filter-option="filterOption"
|
|
|
|
|
:dropdownMatchSelectWidth="false"
|
|
|
|
|
style="width:110px;"
|
|
|
|
|
>
|
|
|
|
|
<a-select-option v-for="(yard, yindex) in yardSelectData" :key="yindex" :value="yindex">
|
|
|
|
|
{{ yard.selectShowTab }}
|
|
|
|
|
</a-select-option>
|
|
|
|
|
</a-select>
|
|
|
|
|
<i class="iconfont icon-touxiang" style="margin: 0 4px" @click="changeYard('content')"></i>
|
|
|
|
|
<i class="iconfont icon-bianji1" @click="changeYard('remark')"></i>
|
|
|
|
|
<div class="feeself">
|
|
|
|
|
<a-checkbox v-model="details.feeself"> 自结 </a-checkbox>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<a-col :span="12">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="报关行"
|
|
|
|
|
:labelCol="labelCol"
|
|
|
|
|
:wrapperCol="wrapperCol"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="customser"
|
|
|
|
|
>
|
|
|
|
|
<auto-complete
|
|
|
|
|
:allowClear="true"
|
|
|
|
|
v-model="details.customser"
|
|
|
|
|
class="customer-input"
|
|
|
|
|
:data-source="customserDataArr"
|
|
|
|
|
:dropdown-match-select-width="false"
|
|
|
|
|
:dropdown-style="{ width: '200px' }"
|
|
|
|
|
@select="customserSelect"
|
|
|
|
|
@focus="customserChange"
|
|
|
|
|
@change="debounce(customserChange, 300, $event)"
|
|
|
|
|
/>
|
|
|
|
|
<!-- @change="customserChange" -->
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<a-col :span="12">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="车队"
|
|
|
|
|
:labelCol="labelCol"
|
|
|
|
|
:wrapperCol="wrapperCol"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="trucker"
|
|
|
|
|
>
|
|
|
|
|
<auto-complete
|
|
|
|
|
:allowClear="true"
|
|
|
|
|
v-model="details.trucker"
|
|
|
|
|
class="customer-input"
|
|
|
|
|
:data-source="truckerDataArr"
|
|
|
|
|
:dropdown-match-select-width="false"
|
|
|
|
|
:dropdown-style="{ width: '200px' }"
|
|
|
|
|
@select="truckerSelect"
|
|
|
|
|
@focus="truckerChange"
|
|
|
|
|
@change="debounce(truckerChange, 300, $event)"
|
|
|
|
|
/>
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<a-col :span="12">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="国外代理"
|
|
|
|
|
:labelCol="labelCol"
|
|
|
|
|
:wrapperCol="wrapperCol"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="agentid"
|
|
|
|
|
>
|
|
|
|
|
<auto-complete
|
|
|
|
|
:allowClear="true"
|
|
|
|
|
v-model="details.agentid"
|
|
|
|
|
class="customer-input"
|
|
|
|
|
:data-source="agentidDataArr"
|
|
|
|
|
:dropdown-match-select-width="false"
|
|
|
|
|
:dropdown-style="{ width: '200px' }"
|
|
|
|
|
@select="agentidSelect"
|
|
|
|
|
@focus="agentidChange"
|
|
|
|
|
@change="debounce(agentidChange, 300, $event)"
|
|
|
|
|
/>
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
:data-source="truckerDataArr"
|
|
|
|
|
:dropdown-match-select-width="false"
|
|
|
|
|
:dropdown-style="{ width: '200px' }"
|
|
|
|
|
@select="truckerSelect"
|
|
|
|
|
@focus="truckerChange"
|
|
|
|
|
@change="debounce(truckerChange, 300, $event)"
|
|
|
|
|
/>
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<a-col :span="12">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label="国外代理"
|
|
|
|
|
:labelCol="labelCol"
|
|
|
|
|
:wrapperCol="wrapperCol"
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="agentid"
|
|
|
|
|
>
|
|
|
|
|
<auto-complete
|
|
|
|
|
size="small"
|
|
|
|
|
:allowClear="true"
|
|
|
|
|
v-model="details.agentid"
|
|
|
|
|
class="customer-input"
|
|
|
|
|
:data-source="agentidDataArr"
|
|
|
|
|
:dropdown-match-select-width="false"
|
|
|
|
|
:dropdown-style="{ width: '200px' }"
|
|
|
|
|
@select="agentidSelect"
|
|
|
|
|
@focus="agentidChange"
|
|
|
|
|
@change="debounce(agentidChange, 300, $event)"
|
|
|
|
|
/>
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<a-col :span="12">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
|
label=" "
|
|
|
|
|
style="opacity:0;"
|
|
|
|
|
:labelCol="labelCol"
|
|
|
|
|
:wrapperCol="wrapperCol"
|
|
|
|
|
></a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<a-col :span="12">
|
|
|
|
|
<a-form-model-item
|
|
|
|
|
class="from-label"
|
|
|
|
@ -341,6 +377,7 @@
|
|
|
|
|
prop="placereceiptid"
|
|
|
|
|
>
|
|
|
|
|
<auto-complete
|
|
|
|
|
size="small"
|
|
|
|
|
:allowClear="true"
|
|
|
|
|
v-model="details.placereceiptid"
|
|
|
|
|
class="customer-input"
|
|
|
|
@ -362,7 +399,7 @@
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="placereceipt"
|
|
|
|
|
>
|
|
|
|
|
<inputView type="placereceipt" :parentVal="details.placereceipt" @getInputChange="inputChange"/>
|
|
|
|
|
<inputView type="placereceipt" size="small" :parentVal="details.placereceipt" @getInputChange="inputChange"/>
|
|
|
|
|
<!-- <a-input :allowClear="true" v-model="details.placereceipt" /> -->
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
@ -376,6 +413,7 @@
|
|
|
|
|
prop="portloadid"
|
|
|
|
|
>
|
|
|
|
|
<auto-complete
|
|
|
|
|
size="small"
|
|
|
|
|
:allowClear="true"
|
|
|
|
|
v-model="details.portloadid"
|
|
|
|
|
class="customer-input"
|
|
|
|
@ -397,7 +435,7 @@
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="portload"
|
|
|
|
|
>
|
|
|
|
|
<inputView type="portload" :parentVal="details.portload" @getInputChange="inputChange"/>
|
|
|
|
|
<inputView type="portload" size="small" :parentVal="details.portload" @getInputChange="inputChange"/>
|
|
|
|
|
<!-- <a-input :allowClear="true" v-model="details.portload" /> -->
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
@ -411,6 +449,7 @@
|
|
|
|
|
prop="transportid"
|
|
|
|
|
>
|
|
|
|
|
<auto-complete
|
|
|
|
|
size="small"
|
|
|
|
|
:allowClear="true"
|
|
|
|
|
v-model="details.transportid"
|
|
|
|
|
class="customer-input"
|
|
|
|
@ -432,7 +471,7 @@
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="transport"
|
|
|
|
|
>
|
|
|
|
|
<inputView type="transport" :parentVal="details.transport" @getInputChange="inputChange"/>
|
|
|
|
|
<inputView type="transport" size="small" :parentVal="details.transport" @getInputChange="inputChange"/>
|
|
|
|
|
<!-- <a-input :allowClear="true" v-model="details.transport" /> -->
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
@ -446,6 +485,7 @@
|
|
|
|
|
prop="portdischargeid"
|
|
|
|
|
>
|
|
|
|
|
<auto-complete
|
|
|
|
|
size="small"
|
|
|
|
|
:allowClear="true"
|
|
|
|
|
v-model="details.portdischargeid"
|
|
|
|
|
class="customer-input"
|
|
|
|
@ -467,7 +507,7 @@
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="portdischarge"
|
|
|
|
|
>
|
|
|
|
|
<inputView type="portdischarge" :parentVal="details.portdischarge" @getInputChange="inputChange"/>
|
|
|
|
|
<inputView type="portdischarge" size="small" :parentVal="details.portdischarge" @getInputChange="inputChange"/>
|
|
|
|
|
<!-- <a-input :allowClear="true" v-model="details.portdischarge" /> -->
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
@ -481,6 +521,7 @@
|
|
|
|
|
prop="destinationid"
|
|
|
|
|
>
|
|
|
|
|
<auto-complete
|
|
|
|
|
size="small"
|
|
|
|
|
:allowClear="true"
|
|
|
|
|
v-model="details.destinationid"
|
|
|
|
|
class="customer-input"
|
|
|
|
@ -502,7 +543,7 @@
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="destination"
|
|
|
|
|
>
|
|
|
|
|
<inputView type="destination" :parentVal="details.destination" @getInputChange="inputChange"/>
|
|
|
|
|
<inputView type="destination" size="small" :parentVal="details.destination" @getInputChange="inputChange"/>
|
|
|
|
|
<!-- <a-input :allowClear="true" v-model="details.destination" /> -->
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
@ -516,6 +557,7 @@
|
|
|
|
|
prop="placedeliveryid"
|
|
|
|
|
>
|
|
|
|
|
<auto-complete
|
|
|
|
|
size="small"
|
|
|
|
|
:allowClear="true"
|
|
|
|
|
v-model="details.placedeliveryid"
|
|
|
|
|
class="customer-input"
|
|
|
|
@ -537,7 +579,7 @@
|
|
|
|
|
has-feedback
|
|
|
|
|
prop="placedelivery"
|
|
|
|
|
>
|
|
|
|
|
<inputView type="placedelivery" :parentVal="details.placedelivery" @getInputChange="inputChange"/>
|
|
|
|
|
<inputView type="placedelivery" size="small" :parentVal="details.placedelivery" @getInputChange="inputChange"/>
|
|
|
|
|
<!-- <a-input :allowClear="true" v-model="details.placedelivery" /> -->
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
@ -552,7 +594,7 @@
|
|
|
|
|
>
|
|
|
|
|
<div class="line-box">
|
|
|
|
|
<!-- <inputView type="pkgs" :parentVal="details.pkgs" inputType="number" @getInputChange="inputChange"/> -->
|
|
|
|
|
<a-input :allowClear="true" v-model="details.pkgs" type="number" @change="changePkgs"/>
|
|
|
|
|
<a-input :allowClear="true" size="small" v-model="details.pkgs" type="number" @change="changePkgs"/>
|
|
|
|
|
<i class="iconfont icon-bianji1 edit-icon" @click="editTextEntryModel('pkgs')"></i>
|
|
|
|
|
</div>
|
|
|
|
|
</a-form-model-item>
|
|
|
|
@ -567,6 +609,7 @@
|
|
|
|
|
prop="kindpkgs"
|
|
|
|
|
>
|
|
|
|
|
<auto-complete
|
|
|
|
|
size="small"
|
|
|
|
|
:allowClear="true"
|
|
|
|
|
v-model="details.kindpkgs"
|
|
|
|
|
class="customer-input"
|
|
|
|
@ -590,7 +633,7 @@
|
|
|
|
|
>
|
|
|
|
|
<div class="line-box">
|
|
|
|
|
<!-- <inputView type="kgs" :parentVal="details.kgs" @getInputChange="inputChange"/> -->
|
|
|
|
|
<a-input :allowClear="true" v-model="details.kgs" />
|
|
|
|
|
<a-input size="small" :allowClear="true" v-model="details.kgs" />
|
|
|
|
|
<i class="iconfont icon-bianji1 edit-icon" @click="editTextEntryModel('kgs')"></i>
|
|
|
|
|
<span class="unit">KGS</span>
|
|
|
|
|
</div>
|
|
|
|
@ -607,7 +650,7 @@
|
|
|
|
|
>
|
|
|
|
|
<div class="line-box">
|
|
|
|
|
<!-- <inputView type="cbm" :parentVal="details.cbm" @getInputChange="inputChange"/> -->
|
|
|
|
|
<a-input :allowClear="true" v-model="details.cbm" />
|
|
|
|
|
<a-input size="small" :allowClear="true" v-model="details.cbm" />
|
|
|
|
|
<i class="iconfont icon-bianji1 edit-icon" @click="editTextEntryModel('cbm')"></i>
|
|
|
|
|
<span class="unit">CBM</span>
|
|
|
|
|
</div>
|
|
|
|
@ -785,12 +828,12 @@ export default {
|
|
|
|
|
labelCol: {
|
|
|
|
|
xs: { span: 24 },
|
|
|
|
|
sm: { span: 8 },
|
|
|
|
|
md: { span: 10 }
|
|
|
|
|
md: { span: 8 }
|
|
|
|
|
},
|
|
|
|
|
wrapperCol: {
|
|
|
|
|
xs: { span: 24 },
|
|
|
|
|
sm: { span: 15 },
|
|
|
|
|
md: { span: 13 }
|
|
|
|
|
sm: { span: 16 },
|
|
|
|
|
md: { span: 16 }
|
|
|
|
|
},
|
|
|
|
|
YardlabelCol: {
|
|
|
|
|
xs: { span: 24 },
|
|
|
|
@ -1884,6 +1927,12 @@ export default {
|
|
|
|
|
console.log('尺码: ', cbm)
|
|
|
|
|
this.details.cbm = cbm
|
|
|
|
|
this.cbmtotalRes = cbm
|
|
|
|
|
},
|
|
|
|
|
changeFeeself (e) {
|
|
|
|
|
// this.details.feeself = e
|
|
|
|
|
// this.details.feeself = !this.details.feeself
|
|
|
|
|
this.$forceUpdate()
|
|
|
|
|
// this.$emit('', this.details.feeself)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -2081,6 +2130,9 @@ export default {
|
|
|
|
|
// right: 44px;
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
.customer-input{
|
|
|
|
|
margin-right: 4px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/deep/ .ant-form-item-children-icon .anticon-check-circle{
|
|
|
|
|
display: none;
|
|
|
|
@ -2093,9 +2145,23 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
.feeself {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: -3px;
|
|
|
|
|
right: -63px;
|
|
|
|
|
transform: scale(0.8);
|
|
|
|
|
// 原始样式
|
|
|
|
|
// top: -3px;
|
|
|
|
|
// right: -63px;
|
|
|
|
|
// 双层样式
|
|
|
|
|
top: 8px;
|
|
|
|
|
// left: 104px;
|
|
|
|
|
right: -4px;
|
|
|
|
|
button{
|
|
|
|
|
line-height: 18px;
|
|
|
|
|
margin-top: 0px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
}
|
|
|
|
|
/deep/ .ant-btn-primary{
|
|
|
|
|
color: #fff !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.from-label {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
@ -2147,9 +2213,9 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 1800px) {
|
|
|
|
|
.feeself {
|
|
|
|
|
right: -75px !important;
|
|
|
|
|
}
|
|
|
|
|
// .feeself {
|
|
|
|
|
// right: -75px !important;
|
|
|
|
|
// }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 1700px) {
|
|
|
|
@ -2158,15 +2224,15 @@ export default {
|
|
|
|
|
margin-top: -11px !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.feeself {
|
|
|
|
|
top: 6px !important;
|
|
|
|
|
right: -43px !important;
|
|
|
|
|
.ant-checkbox-wrapper{
|
|
|
|
|
span{
|
|
|
|
|
padding: 0 4px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// .feeself {
|
|
|
|
|
// top: 6px !important;
|
|
|
|
|
// right: -43px !important;
|
|
|
|
|
// .ant-checkbox-wrapper{
|
|
|
|
|
// span{
|
|
|
|
|
// padding: 0 4px;
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
.yarn-label {
|
|
|
|
|
position: relative;
|
|
|
|
|
/deep/ .ant-form-item-children-icon{
|
|
|
|
@ -2176,18 +2242,18 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 1622px) {
|
|
|
|
|
.feeself {
|
|
|
|
|
top: 6px !important;
|
|
|
|
|
right: -52px !important;
|
|
|
|
|
}
|
|
|
|
|
// .feeself {
|
|
|
|
|
// top: 6px !important;
|
|
|
|
|
// right: -52px !important;
|
|
|
|
|
// }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 1495px) {
|
|
|
|
|
.feeself {
|
|
|
|
|
top: 6px !important;
|
|
|
|
|
right: -61px !important;
|
|
|
|
|
}
|
|
|
|
|
// .feeself {
|
|
|
|
|
// top: 6px !important;
|
|
|
|
|
// right: -61px !important;
|
|
|
|
|
// }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.has-error{
|
|
|
|
@ -2199,6 +2265,7 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
.ant-select-selection__rendered{
|
|
|
|
|
margin-right: 0 !important;
|
|
|
|
|
line-height: 24px;
|
|
|
|
|
}
|
|
|
|
|
.ant-select-arrow{
|
|
|
|
|
right: 0 !important;
|
|
|
|
@ -2324,5 +2391,17 @@ export default {
|
|
|
|
|
padding-top: 4px !important;
|
|
|
|
|
padding-block: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.right-content{
|
|
|
|
|
/deep/ .ant-form-item-label {
|
|
|
|
|
height:36px !important;
|
|
|
|
|
line-height: 36px !important;
|
|
|
|
|
// border: 1px solid #f00;
|
|
|
|
|
}
|
|
|
|
|
/deep/ .ant-form-item-control{
|
|
|
|
|
height:36px !important;
|
|
|
|
|
line-height: 36px !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// }
|
|
|
|
|
</style>
|
|
|
|
|