作者 朱兆平

Merge remote-tracking branch 'origin/master'

... ... @@ -1083,6 +1083,18 @@ Handling Information
</el-form-item>
</el-col>
<el-col style="margin-left: 30px" :span="2">
<el-form-item>
<el-select v-model="addForm.fhl.ver" placeholder="请选择">
<el-option
v-for="item in vers"
:key="item.value"
:label="item.label"
:value="item.value">
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col style="margin-left: 30px" :span="2">
<el-button type="warning" plain @click="cancleBtn">清空</el-button>
</el-col>
</el-row>
... ... @@ -2380,6 +2392,7 @@ Handling Information
quantity_picecs:'',
origin:'',
destination:'',
ver:'5'
},
shp:{
shp_detail_identifier:'TE',
... ... @@ -2428,6 +2441,13 @@ Handling Information
},
oci:[],
},
vers:[{
value: '4',
label: '版本4'
}, {
value: '5',
label: '版本5'
}],
shp_aeo:{
oci_country_code: "",
oci_customs: "T",
... ...