From 8ab5e8578d86f98d95aa931fc4780bf276aebef2 Mon Sep 17 00:00:00 2001 From: xzg <4727863@qq.com> Date: Thu, 26 Sep 2024 19:42:20 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=B7=E6=A0=BC=E8=BD=A6=E5=9E=8B=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Deliverymaintenancecosts.vue | 41 +++++++++++++++---- 1 file changed, 34 insertions(+), 7 deletions(-) diff --git a/src/views/cost/Deliverycostmanagement/Deliverymaintenancecosts.vue b/src/views/cost/Deliverycostmanagement/Deliverymaintenancecosts.vue index 6040b8cb..f03256bf 100644 --- a/src/views/cost/Deliverycostmanagement/Deliverymaintenancecosts.vue +++ b/src/views/cost/Deliverycostmanagement/Deliverymaintenancecosts.vue @@ -30,7 +30,12 @@
- +
@@ -279,6 +284,7 @@ import { $_expenseDispatchPriceRuledetail, } from '@/api/storagecost/index.js'; import { $_ObtainRegion } from '@/api/basicdata/basicdataWarehouse'; +import { getList } from '@/api/basicdata/basicdataVehicleInfo'; import { getDictionaryBiz } from '@/api/system/dict'; //字典 import { deepClone } from '@/utils/util'; const emit = defineEmits(['request-data']); @@ -491,11 +497,12 @@ const asurcharge = ref([ const dispatchSubjoinCategory = ref([ { label: '序号', prop: 'index', type: 'string', width: '50', disabled: true }, { - label: '车型', + label: '车型1', prop: 'carModel', type: 'select', width: 'auto', - disabled: true, + disabled: true, //是否显示 + show: true, //禁止输入框 }, { label: '操作', prop: '', type: '', width: 'auto', disabled: true }, ]); @@ -773,13 +780,13 @@ const Categoryprocessing = (value, data, type) => { const Oversizedbillingprocessing = (value, data) => { OversizedbillingData.value.forEach(item => { console.log(item, '超区计费-----》'); - + // 拆解出 region 数组中的省、市、区编码 const [province, city, district] = item.region; // 查找省对象 const provinceObj = item.options.find(option => option.value == province); - + // 根据省对象查找市集合 const cityObj = provinceObj?.children?.find(cityItem => cityItem.value == city); @@ -1079,11 +1086,31 @@ const onLoad = async () => { }); } }; + +// 获取车型 +const Obtainvehiclemodel = async () => { + try { + let _res = await getList(); + const { code, data } = _res.data; + if (code == 200) { + console.log(data, '车型'); + optionsVehicle.value = data.map(item => { + return { + label: item.vehicleModel, + value: item.id, + }; + }); + initData(); + } + } catch (e) { + console.log(e, 'error'); + } finally { + } +}; // 页面初始化 const onLoadPage = async () => { await onLoad(); - updateDictionary(optionsVehicle.value, 'price_vehicle_type'); // 获取车型 - + Obtainvehiclemodel(); //获取车型 GetRegion(); //获取地区 }; onLoadPage();