网费申请加始发网点

This commit is contained in:
wuteng 2025-06-21 17:57:48 +08:00
parent f499bf6868
commit c1981ee778

View File

@ -857,6 +857,24 @@
</el-col>
</el-row>
</el-col>
<!-- 始发网点调整 -->
<el-col :span="24" v-if="applyType&&(applyTypeArr.includes('44'))">
<el-row :gutter="0" class="md-row">
<el-col :span="3" class="md-title">
<span>始发网点调整</span>
</el-col>
<el-col :span="7" class="md-value">
<span>
始发网点:{{ billDetail.startSiteName }}
</span>
</el-col>
<el-col :span="14">
<el-form-item :label="$t('始发网点')" prop="startSiteCode" label-width="100px">
<EmisSiteSimplePicker :placeholder="$t('始发网点')" v-model="form.startSiteCode" @onChange="onStartSiteSelect" ></EmisSiteSimplePicker>
</el-form-item>
</el-col>
</el-row>
</el-col>
</el-row>
<!-- ||applyTypeArr.includes('12') -->
<el-row v-if="billDetail&&applyType&&(
@ -2111,7 +2129,16 @@ export default {
if (this.form.blVirtual !== '1') {
this.form.masterBillCode = null;
}
}
},
onStartSiteSelect(item) {
if (!item) {
this.form.startSiteCode = null;
this.form.startSiteName = null;
return;
}
this.form.startSiteCode = item.siteCode;
this.form.startSiteName = item.siteName;
},
}
};
</script>