This commit is contained in:
linfso 2025-02-19 12:08:51 +08:00
parent ee96917d31
commit bd77fcbd85
2 changed files with 10 additions and 17 deletions

View File

@ -47,14 +47,13 @@
</el-col>
<el-col :span="8">
<el-form-item :label="$t('批次类型')" prop="batchType">
<el-select v-model="form.batchType" placeholder="" style="width:100%">
<el-option key="1" label="一程批次" value="1"></el-option>
<el-option key="2" label="二程批次" value="2"></el-option>
<el-option key="4" label="三程批次" value="4"></el-option>
<el-option key="5" label="四程批次" value="5"></el-option>
<el-option key="6" label="五程批次" value="6"></el-option>
<el-option key="7" label="末端派送" value="7"></el-option>
<el-option key="3" label="网点互寄" value="3"></el-option>
<el-select v-model="form.batchType" placeholder="批次类型" clearable filterable style="width:100%" >
<el-option
v-for="dict in dict.type.emis_big_batch_type"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</el-select>
</el-form-item>
</el-col>
@ -392,7 +391,7 @@ export default {
},
components: { EmisGetNextSitePicker, CountryPicker, EmisSiteSimplePicker, elDateAdvPicker, emisTmsPackForm, TransLinePicker, TransProductPicker, PackListView,EmisSupplierPicker},
dicts: ['emis_waybill_status', 'emis_payment_type', 'emis_biz_shipping_method', 'emis_qujian_fangshi', 'cebp_return_status','emis_declare_mode','emis_customs_clear'],
dicts: ['emis_waybill_status', 'emis_payment_type', 'emis_biz_shipping_method', 'emis_qujian_fangshi', 'cebp_return_status','emis_declare_mode','emis_customs_clear','emis_big_batch_type'],
data() {
return {
// 遮罩层

View File

@ -150,13 +150,7 @@
<el-table-column :label="$t('批次名称')" align="center" prop="batchName" min-width="130" :show-overflow-tooltip="true" />
<el-table-column :label="$t('批次类型')" align="center" prop="batchType" min-width="100">
<template slot-scope="scope">
<span v-if="scope.row.batchType==1">一程批次</span>
<span v-else-if="scope.row.batchType==2">二程批次</span>
<span v-else-if="scope.row.batchType==3">网点互寄</span>
<span v-else-if="scope.row.batchType==4">三程批次</span>
<span v-else-if="scope.row.batchType==5">四程批次</span>
<span v-else-if="scope.row.batchType==6">五程批次</span>
<span v-else-if="scope.row.batchType==7">末端派送</span>
<dict-tag :options="dict.type.emis_big_batch_type" :value="scope.row.batchType"/>
</template>
</el-table-column>
<!-- <el-table-column :label="$t('报关资料状态')" align="center" prop="declareResStatus" min-width="170">
@ -232,7 +226,7 @@ export default {
EmisSupplierPicker
},
dicts: [
'emis_waybill_status', 'emis_payment_type', 'emis_biz_shipping_method', 'emis_qujian_fangshi', 'cebp_return_status','emis_declare_mode','emis_customs_clear',
'emis_waybill_status', 'emis_payment_type', 'emis_biz_shipping_method', 'emis_qujian_fangshi', 'cebp_return_status','emis_declare_mode','emis_customs_clear','emis_big_batch_type'
],
data() {