This commit is contained in:
aihe 2024-12-05 13:03:16 +08:00
parent e3f94edb03
commit ac38ceb756
2 changed files with 10 additions and 4 deletions

View File

@ -158,7 +158,8 @@
handleDelGood(index) {
this.modelInfo.cargoList.splice(index, 1)
},
handleAddGood(item = { }) {
handleAddGood(item = { }) {
this.modelInfo.cargoList = this.modelInfo.cargoList || []
this.modelInfo.cargoList.push({
...item
})

View File

@ -136,13 +136,13 @@
<view class="yunf-input-item">
<tpx-select v-model:value="submitParam.customsClear" :list="dicData.emis_customs_clear"
mode="drop"
mode="drop" @onChange="handleCstClrChange"
>
<tpx-text-item :required="true" label="清关方式" :value="submitParam.customsClear" :list="dicData.emis_customs_clear"></tpx-text-item>
</tpx-select>
</view>
<view class="yunf-input-item">
<view v-if="submitParam.customsClear!=2" class="yunf-input-item">
<tpx-select v-model:value="submitParam.dispatchMethod" :list="dicData.emis_tab_dispatch_mode"
mode="drop"
>
@ -380,7 +380,12 @@
this.submitParam.intoWarehouseContact = item.contact
this.submitParam.intoWarehousePhone = item.tel
},
handleCstClrChange(val){
if(val == 2){
this.submitParam.dispatchMethod = 2
}
},
handleDialogClick(curModal){
curModal.show = true
},