diff --git a/src/views/Pricesystem/Price/PriceBill.vue b/src/views/Pricesystem/Price/PriceBill.vue index 9da9327d..5f3b8e39 100644 --- a/src/views/Pricesystem/Price/PriceBill.vue +++ b/src/views/Pricesystem/Price/PriceBill.vue @@ -268,10 +268,14 @@ width="70%" v-model="details.popUpShow.addVsitied" > - - + + - + - + > ', props); /** 表单实例 */ const formRef = ref(); +/** 提货路径表单 */ +const lineFormRef = ref(); + const VehicleBillingFormRef = ref(); // 品类价格 @@ -565,7 +580,7 @@ interface BillTemplateDetail { /** 整车计费 */ interface VehicleBilling { /** 车型 */ - pickupPricingType: string; + vehicleType: string; /** 车型计费(元/车) */ price: number; } @@ -604,7 +619,7 @@ const details = reactive({ VehicleBillingDetal: [ { /** 车型 */ - pickupPricingType: '', + vehicleType: '', /** 车型计费(元/车) */ price: 0, }, @@ -824,16 +839,18 @@ const handleVehicleTypeArr = response => { /** 获取业务字典 */ const initDictionaryBiz = async () => { + console.log('123213213 :>> ', 123213213); try { - // 干线计费方式 - const trunkLinePromise = getDictionaryBiz('trunk_line_pricing_type'); - // 车辆类型 - const priceVehiclePromise = getDictionaryBiz('price_vehicle_type'); + const { trunkLineResult, priceVehicleResult, regionOptione } = props.templateData; + // // 干线计费方式 + // const trunkLinePromise = getDictionaryBiz('trunk_line_pricing_type'); + // // 车辆类型 + // const priceVehiclePromise = getDictionaryBiz('price_vehicle_type'); - const [trunkLineResult, priceVehicleResult] = await Promise.all([ - trunkLinePromise, - priceVehiclePromise, - ]); + // const [trunkLineResult, priceVehicleResult] = await Promise.all([ + // trunkLinePromise, + // priceVehiclePromise, + // ]); await nextTick(); @@ -853,12 +870,15 @@ const initDictionaryBiz = async () => { // 不按统一区域计费, 初始化获取数据 if (details.form.pickupIsUnifyAreaBill === '0') { + console.log('123 :>> ', 123); + // 获取省市区信息 - const res = await getLazyTreeAll(); - if (res.data.success) { - details.regionOptione = res.data.data || []; + if (regionOptione.data.success) { + details.regionOptione = regionOptione.data.data || []; } + console.log('123321 :>> ', 123321); + initLineData(); } } @@ -867,6 +887,7 @@ const initDictionaryBiz = async () => { handleTrunkLinePricingType(trunkLineResult); handleVehicleTypeArr(priceVehicleResult); + initAssignmentForm(props.templateData.requestInfo.pickup, false); // 初始化复制form数据 initFormData(); } catch (error) { @@ -894,7 +915,7 @@ const handlePlusVehicle = async (index: number) => { details.VehicleBillingDetal.splice(index + 1, 0, { /** 车型 */ - pickupPricingType: '', + vehicleType: '', /** 车型计费(元/车) */ price: 0, }); @@ -972,7 +993,7 @@ const initLineData = async () => { try { details.loadingObj.list = true; - const res = await getPage({ ...details.page, priceId: $route.query.id }); + const res = await getPage({ ...details.page, priceId: $route.query.id, serviceType: '1' }); const { code, data } = res.data; if (code !== 200) return; @@ -1081,7 +1102,7 @@ const handleAdd = () => { details.VehicleBillingDetal = [ { /** 车型 */ - pickupPricingType: '', + vehicleType: '', /** 车型计费(元/车) */ price: 0, }, @@ -1091,22 +1112,31 @@ const handleAdd = () => { }; /** 给form赋值 */ -const initAssignmentForm = data => { - details.form.startCity = [ - ...new Set([data.startProvinceId + '', data.startCityId + '', data.startCountyId + '']), - ]; - details.form.endCity = [ - ...new Set([data.endProvinceId + '', data.endCityId + '', data.endCountyId + '']), - ]; - details.form.sendOrgId = data.sendOrgId; - details.form.sendOrg = data.sendOrgName; - details.form.priceId = data.priceId; +const initAssignmentForm = (data, isLine = true) => { + if (isLine) { + details.form.startCity = [ + ...new Set([data.startProvinceId + '', data.startCityId + '', data.startCountyId + '']), + ]; + details.form.endCity = [ + ...new Set([data.endProvinceId + '', data.endCityId + '', data.endCountyId + '']), + ]; + details.form.sendOrgId = data.sendOrgId; + details.form.sendOrg = data.sendOrgName; + details.form.priceId = data.priceId; + } details.form.minCost = data.minCost || 0; details.form.additionalCost = data.additionalCost || 0; // 车辆赋值 - details.VehicleBillingDetal = data.fullVehicle || []; + details.VehicleBillingDetal = data.fullVehicle || [ + { + /** 车型 */ + vehicleType: '', + /** 车型计费(元/车) */ + price: 0, + }, + ]; for (let i = 0; i < details.VehicleBillingDetal.length; i++) { const value = details.VehicleBillingDetal[i]; @@ -1169,7 +1199,7 @@ const handleEdit = async ({ row }) => { details.VehicleBillingDetal = [ { /** 车型 */ - pickupPricingType: '', + vehicleType: '', /** 车型计费(元/车) */ price: 0, }, @@ -1240,17 +1270,51 @@ const resetFormData = () => { /** 提交 */ const handleSubmit = async () => { - if (details.form.pickupPricingType.length === 0) ElMessage.error('请选择计价方式'); - let isRetrun = false; await formRef.value.validate(valid => { // if (!valid) return; - console.log('222 :>> ', 222); isRetrun = !valid; }); if (isRetrun) return; + + const submitData: any = { + checkType: '1', + id: $route.query.id, + pickup: {}, + }; + + // 是否最低计费 + if (details.form.pickupIsMinCost === '1') { + submitData.pickup.minCost = details.form.minCost; + submitData.pickup.additionalCost = details.form.additionalCost; + } + + for (let i = 0; i < details.form.billTemplateDetail.length; i++) { + const item = details.form.billTemplateDetail[i]; + + if (!details.form.pickupPricingType.includes(item.code)) continue; + + // 按件 + if (item.code === '1') submitData.pickup.pieceCategory = item.categories; + // 按方 + else if (item.code === '3') submitData.pickup.cubeCategory = item.categories; + // 按重量 + else if (item.code === '4') submitData.pickup.weightCategory = item.categories; + } + + // 按整车 + if (details.form.pickupPricingType.includes('2')) { + for (let i = 0; i < details.VehicleBillingDetal.length; i++) { + const value = details.VehicleBillingDetal[i]; + + if (!value.vehicleType) return ElMessage.warning('存在未选车型, 请选择车型'); + } + + submitData.pickup.fullVehicle = details.VehicleBillingDetal; + } + ElMessageBox.confirm('确认提交', '', { confirmButtonText: '确认', cancelButtonText: '取消', @@ -1259,34 +1323,6 @@ const handleSubmit = async () => { try { details.loadingObj.pageLoading = true; - const submitData: any = { - checkType: '1', - id: $route.query.id, - pickup: {}, - }; - - // 是否最低计费 - if (details.form.pickupIsMinCost === '1') { - submitData.pickup.minCost = details.form.minCost; - submitData.pickup.additionalCost = details.form.additionalCost; - } - - for (let i = 0; i < details.form.billTemplateDetail.length; i++) { - const item = details.form.billTemplateDetail[i]; - - if (!details.form.pickupPricingType.includes(item.code)) continue; - - // 按件 - if (item.code === '1') submitData.pickup.pieceCategory = item.categories; - // 按方 - else if (item.code === '3') submitData.pickup.cubeCategory = item.categories; - // 按重量 - else if (item.code === '4') submitData.pickup.weightCategory = item.categories; - } - // 按整车 - if (details.form.pickupPricingType.includes('2')) - submitData.pickup.fullVehicle = details.VehicleBillingDetal; - const res = await putBasicdataPrice(submitData); const { code, msg } = res.data; @@ -1304,7 +1340,62 @@ const handleSubmit = async () => { }; /** 提货线路提交 */ -const handleSubmitLine = () => { +const handleSubmitLine = async () => { + let isRetrun = false; + + await lineFormRef.value.validate(valid => { + // if (!valid) return; + isRetrun = !valid; + }); + + if (isRetrun) return; + + const submitData: any = { + startProvinceId: details.form.startProvinceId, // 省 + startCityId: details.form.startCityId, // 市 + startCountyId: details.form.startCountyId, // 区, + endProvinceId: details.form.endProvinceId, // 省 + endCityId: details.form.endCityId, // 市 + endCountyId: details.form.endCountyId, // 区, + /** 提货 */ + serviceType: '1', + priceId: $route.query.id, + sendOrgId: details.form.sendOrgId, + }; + + // 如果为编辑提交 + if (details.lineType === 'edit') submitData.id = details.form.id; + + // 是否最低计费 + if (details.form.pickupIsMinCost === '1') { + submitData.minCost = details.form.minCost; + submitData.additionalCost = details.form.additionalCost; + } + + for (let i = 0; i < details.form.billTemplateDetail.length; i++) { + const item = details.form.billTemplateDetail[i]; + + if (!details.form.pickupPricingType.includes(item.code)) continue; + + // 按件 + if (item.code === '1') submitData.pieceCategory = item.categories; + // 按方 + else if (item.code === '3') submitData.cubeCategory = item.categories; + // 按重量 + else if (item.code === '4') submitData.weightCategory = item.categories; + } + + // 按整车 + if (details.form.pickupPricingType.includes('2')) { + for (let i = 0; i < details.VehicleBillingDetal.length; i++) { + const value = details.VehicleBillingDetal[i]; + + if (!value.vehicleType) return ElMessage.warning('存在未选车型, 请选择车型'); + } + + submitData.fullVehicle = details.VehicleBillingDetal; + } + ElMessageBox.confirm('确认提交', '', { confirmButtonText: '确认', cancelButtonText: '取消', @@ -1316,44 +1407,6 @@ const handleSubmitLine = () => { console.log('details.form :>> ', details.form); - const submitData: any = { - startProvinceId: details.form.startProvinceId, // 省 - startCityId: details.form.startCityId, // 市 - startCountyId: details.form.startCountyId, // 区, - endProvinceId: details.form.endProvinceId, // 省 - endCityId: details.form.endCityId, // 市 - endCountyId: details.form.endCountyId, // 区, - /** 提货 */ - serviceType: '1', - priceId: $route.query.id, - sendOrgId: details.form.sendOrgId, - }; - - // 如果为编辑提交 - if (details.lineType === 'edit') submitData.id = details.form.id; - - // 是否最低计费 - if (details.form.pickupIsMinCost === '1') { - submitData.minCost = details.form.minCost; - submitData.additionalCost = details.form.additionalCost; - } - - for (let i = 0; i < details.form.billTemplateDetail.length; i++) { - const item = details.form.billTemplateDetail[i]; - - if (!details.form.pickupPricingType.includes(item.code)) continue; - - // 按件 - if (item.code === '1') submitData.pieceCategory = item.categories; - // 按方 - else if (item.code === '3') submitData.cubeCategory = item.categories; - // 按重量 - else if (item.code === '4') submitData.weightCategory = item.categories; - } - // 按整车 - if (details.form.pickupPricingType.includes('2')) - submitData.fullVehicle = details.VehicleBillingDetal; - const res = await postSubmit(submitData); const { code, msg } = res.data; diff --git a/src/views/Pricesystem/Price/PriceTrunkLine.vue b/src/views/Pricesystem/Price/PriceTrunkLine.vue index ba8dd688..5434b477 100644 --- a/src/views/Pricesystem/Price/PriceTrunkLine.vue +++ b/src/views/Pricesystem/Price/PriceTrunkLine.vue @@ -1,211 +1,579 @@