From 91b29346f4e60d23467563ace7145ca4ac031477 Mon Sep 17 00:00:00 2001 From: qb <1191961160@qq.com> Date: Thu, 7 Mar 2024 19:20:58 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E9=83=A8=E5=88=86=E8=A1=A8=E6=A0=BC?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E8=A1=A8=E6=A0=BC=E5=88=B7=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/SelectBox/SelectBox.vue | 5 - src/components/tablecmt/tablecmt.vue | 25 ++++ src/utils/util.js | 18 ++- src/views/aftersales/aftersalesWorkOrder.vue | 112 ++++++++--------- src/views/basic/coderule/basicTenantCode.vue | 72 ++++++----- src/views/basic/forklift/basicForklift.vue | 114 ++++++++++-------- .../distribution/artery/AddVehicleStowage.vue | 93 ++++++-------- .../artery/TripartiteTransfer.vue | 7 +- .../artery/TripartiteTransferDetails.vue | 5 +- .../artery/VehicleArrivalManagement.vue | 22 ++-- .../distribution/artery/VehicleStowage.vue | 70 ++++++----- .../artery/VehicleStowageDetails.vue | 1 + .../artery/addTripartiteTransfer.vue | 22 ++-- .../distribution/artery/directGoMarket.vue | 44 +++---- .../artery/directGoMarketDetails.vue | 8 +- .../artery/handleLoadingDestination.vue | 1 + .../artery/truckLoadingDetails.vue | 8 +- .../artery/zeroAdditionalRecording.vue | 27 +---- .../distribution/inventory/CreateOrder.vue | 45 +------ .../addArteryDistrilbutionBillLadingList.vue | 4 +- .../arteryDistrilbutionBillLadingList.vue | 57 ++++----- 21 files changed, 364 insertions(+), 396 deletions(-) diff --git a/src/components/SelectBox/SelectBox.vue b/src/components/SelectBox/SelectBox.vue index c695fd6d..76e9deda 100644 --- a/src/components/SelectBox/SelectBox.vue +++ b/src/components/SelectBox/SelectBox.vue @@ -21,9 +21,6 @@ " v-if="isShowBox" > -
> ', props); - className.value = props.className || ''; const selectBox = ref(null); diff --git a/src/components/tablecmt/tablecmt.vue b/src/components/tablecmt/tablecmt.vue index 0a07c08f..a2e3fce2 100644 --- a/src/components/tablecmt/tablecmt.vue +++ b/src/components/tablecmt/tablecmt.vue @@ -44,6 +44,12 @@ class="mx-1" > + + , + required: false, + default: true, + }, }); /** 勾选数据统计 */ const selectCount = ref([]); @@ -491,6 +502,8 @@ function makeCargo(value, column: TableColumnType) { emit('makeCargo', value, column); } function inputchange(value, column: TableColumnType) { + console.log('value :>> ', value); + console.log('column :>> ', column); if (typeof value == 'string') { emit('inputTxt', value, column); } @@ -673,6 +686,18 @@ function copyContent(content: string) { } } +const handleRefresh = () => { + for (let i = 0; i < newcolumnList.value.length; i++) { + const item = newcolumnList.value[i]; + + item.values = ''; + + if (item.type === 2 || item.type === 13) emit('inputTxt', item.values, item); + else if (item.type === 3) emit('selectCheck', item.values, item); + else if (item.type === 4) emit('timeCheck', item.values, item); + } +}; + defineExpose({ handleCheckSelect, handleClearSelect }); diff --git a/src/components/tablecmt/tablecmt.vue b/src/components/tablecmt/tablecmt.vue index a2e3fce2..07fb7a3e 100644 --- a/src/components/tablecmt/tablecmt.vue +++ b/src/components/tablecmt/tablecmt.vue @@ -44,9 +44,7 @@ class="mx-1" > - @@ -348,7 +346,7 @@ let props = defineProps({ isShowRefresh: { type: Boolean as PropType, required: false, - default: true, + default: false, }, }); /** 勾选数据统计 */ diff --git a/src/main.js b/src/main.js index da6f3bae..07e3b156 100644 --- a/src/main.js +++ b/src/main.js @@ -27,6 +27,7 @@ import SelectBox from './components/SelectBox/SelectBox.vue'; import edittablehead from './components/edittablehead/index.vue'; import WaybillPrintTemplate from './components/WaybillPrintTemplate/WaybillPrintTemplate.vue'; import ArteryPrintTemplate from './components/ArteryPrintTemplate/ArteryPrintTemplate.vue'; +import TripartiteTransferPrintTemplate from './components/TripartiteTransferPrintTemplate/TripartiteTransferPrintTemplate.vue'; import { message } from './utils/resetMessage'; import App from './App.vue'; import 'animate.css'; @@ -56,6 +57,8 @@ app.component('SelectBox', SelectBox); app.component('WaybillPrintTemplate', WaybillPrintTemplate); /** 干线运输打印模版 */ app.component('ArteryPrintTemplate', ArteryPrintTemplate); +/** 三方运输打印模版 */ +app.component('TripartiteTransferPrintTemplate', TripartiteTransferPrintTemplate); app.config.globalProperties.$dayjs = dayjs; app.config.globalProperties.$functions = functions; app.provide('functions', functions); diff --git a/src/views/distribution/artery/TripartiteTransfer.vue b/src/views/distribution/artery/TripartiteTransfer.vue index a65e9ee9..956b54fb 100644 --- a/src/views/distribution/artery/TripartiteTransfer.vue +++ b/src/views/distribution/artery/TripartiteTransfer.vue @@ -1,5 +1,5 @@ + + + + + +
+ +
+
+ + 取 消 + + 打 印 +
+
+ ({ list: false, /** 配置装车目的地详情 */ truckLoadingDetailPopUpLoading: false, + /** 页面loading */ + pageLoading: false, }, /** 列表复选框选中的数据 */ selectionList: [], @@ -456,6 +511,8 @@ const details = reactive({ chooseDestinationVisited: false, /** 结算弹窗 */ closeAnAccountVisited: false, + /** 装载清单 */ + listOfLoadedWagons: false, }, /** 列表Dom节点 */ listNode: '', @@ -497,6 +554,8 @@ const details = reactive({ /** 配置节点 */ truckLoadingDetailPopUp: false, comparativeStatementPopUp: false, + /** 装载清单 */ + listOfLoadedWagonsPopUp: false, }, packageColumnList: deepClone(packageColumnList), /** 配置装车目的地数据 */ @@ -514,6 +573,7 @@ const details = reactive({ packageQuery: {}, /** 结算金额表单 */ closeAnAccountForm: { number: 0 }, + listOfLoadedWagonsData: {}, }); /** 表格实例 */ @@ -1019,6 +1079,53 @@ const handleSubmitCloseAnAccount = async () => { } finally { } }; + +/** + * 是否开启床车明细全屏 + * @params(_type) 开启或关闭 + */ +const handleFullScrean = (_type: 'open' | 'close', _name: string) => { + let _node: any = ''; + if (_name) _node = document.querySelectorAll(`.${_name} .maboxhi`); + console.log('_node :>> ', _node); + + switch (_name) { + case 'comparativeStatementPopUp': + details.fullscreenObj.comparativeStatementPopUp = + !details.fullscreenObj.comparativeStatementPopUp; + break; + + default: + details.fullscreenObj[_name] = !details.fullscreenObj[_name]; + if (_type === 'close') { + if (_node) setNodeHeight(_node, '500px'); + } else { + if (_node) setNodeHeight(_node); + } + break; + } +}; + +/** 显示装载清单 */ +const handleShowListOfLoadedWagons = async () => { + try { + if (details.selectionList.length === 0) return ElMessage.warning('请选择装载清单'); + if (details.selectionList.length > 1) return ElMessage.warning('只能选择一个装载清单'); + details.loadingObj.pageLoading = true; + const { id } = details.selectionList[0]; + + const res = await postFindLoadingListData({ loadId: id }); + const { code, data } = res.data; + + if (code !== 200) return; + details.popUpShow.listOfLoadedWagons = true; + details.listOfLoadedWagonsData = data; + } catch (error) { + console.log('error :>> ', error); + } finally { + details.loadingObj.pageLoading = false; + } +}; diff --git a/src/views/distribution/artery/VehicleArrivalManagement.vue b/src/views/distribution/artery/VehicleArrivalManagement.vue index 4a72c90c..43a24a7b 100644 --- a/src/views/distribution/artery/VehicleArrivalManagement.vue +++ b/src/views/distribution/artery/VehicleArrivalManagement.vue @@ -1,5 +1,5 @@ + + + + + +
+ +
+
+ + 取 消 + + 打 印 +
+
+ { const handleArrive = async () => { if (details.selectionList.length == 0) return ElMessage.warning('请选择需要到车的数据'); - console.log( - 'details.selectionList.map(val => val.id) :>> ', - details.selectionList.map(val => val.id) - ); - const submitData = { - loadId: details.selectionList.map(val => val.id).join(','), - ...details.form, - }; - - const res = await postloadArriveCarByLoadId(submitData); - const { code } = res.data; - if (code !== 200) { - return; - } - ElMessage({ - type: 'success', - message: '到达成功', - }); + ElMessageBox.confirm('确认到车?', '提示', { + confirmButtonText: '确认', + cancelButtonText: '取消', + type: 'warning', + }).then(async () => { + try { + details.loadingObj.pageLoading = true; + const submitData = { + loadId: details.selectionList.map(val => val.id).join(','), + ...details.form, + }; - onLoad(); + const res = await postloadArriveCarByLoadId(submitData); + const { code } = res.data; + if (code !== 200) { + return; + } + ElMessage({ + type: 'success', + message: '到达成功', + }); + + onLoad(); + } catch (error) { + console.log('error :>> ', error); + } finally { + details.loadingObj.pageLoading = false; + } + }); }; /** 取消到车 */ const handleCloseArrive = async () => { - console.log( - 'details.selectionList.map(val => val.id) :>> ', - details.selectionList.map(val => val.id) - ); - const submitData = { - loadId: details.selectionList.map(val => val.id).join(','), - ...details.form, - }; - - const res = await postloadCancelArriveCarByLoadId(submitData); - const { code } = res.data; - if (code !== 200) { - return; - } - ElMessage({ - type: 'success', - message: '取消成功', - }); + ElMessageBox.confirm('确认取消到车?', '提示', { + confirmButtonText: '确认', + cancelButtonText: '取消', + type: 'warning', + }).then(async () => { + try { + details.loadingObj.pageLoading = true; + const submitData = { + loadId: details.selectionList.map(val => val.id).join(','), + ...details.form, + }; - onLoad(); + const res = await postloadCancelArriveCarByLoadId(submitData); + const { code } = res.data; + if (code !== 200) { + return; + } + ElMessage({ + type: 'success', + message: '取消成功', + }); + + onLoad(); + } catch (error) { + console.log('error :>> ', error); + } finally { + details.loadingObj.pageLoading = false; + } + }); }; /** 编辑配载信息 */ @@ -858,50 +932,65 @@ const handleStartCar = async () => { }); } - // 判断是否有未有终点的装车数据 - const res = await postDetermineHasNoFinalNode({ loadId: details.selectionList[0].id }); - - const { code, data } = res.data; - if (code !== 200) return; - // 根据data是否返值判断能否发车 - if (data) { - details.popUpShow.truckLoadingDetailVisited = true; - - details.packageData = data || []; - details.packageRenderData = details.packageData; - - // 初始化数据 - const _item = details.selectionList[0]; - init(_item); - - await nextTick(); - const _node = document.querySelector('.truckLoadingDetailPopUpTable'); - setNodeHeight(_node, '500px'); - } else { - details.popUpShow.truckLoadingDetailVisited = false; + try { + details.loadingObj.pageLoading = true; - ElMessageBox.confirm('确认发车吗?', '', { - confirmButtonText: '确认', - cancelButtonText: '取消', - type: 'warning', - }).then(async () => { - const submitData = { - loadId: details.selectionList.map(val => val.id).join(','), - startCarType: '2', - }; + // 判断是否有未有终点的装车数据 + const res = await postDetermineHasNoFinalNode({ loadId: details.selectionList[0].id }); - const res = await postStartCarByLoadId(submitData); - const { code } = res.data; - if (code !== 200) { - return; - } - ElMessage({ - type: 'success', - message: '发车成功', + const { code, data } = res.data; + if (code !== 200) return; + // 根据data是否返值判断能否发车 + if (data) { + details.popUpShow.truckLoadingDetailVisited = true; + + details.packageData = data || []; + details.packageRenderData = details.packageData; + + // 初始化数据 + const _item = details.selectionList[0]; + init(_item); + + await nextTick(); + const _node = document.querySelector('.truckLoadingDetailPopUpTable'); + setNodeHeight(_node, '500px'); + } else { + details.popUpShow.truckLoadingDetailVisited = false; + + ElMessageBox.confirm('确认发车吗?', '', { + confirmButtonText: '确认', + cancelButtonText: '取消', + type: 'warning', + }).then(async () => { + try { + details.loadingObj.pageLoading = true; + const submitData = { + loadId: details.selectionList.map(val => val.id).join(','), + startCarType: '2', + }; + + const res = await postStartCarByLoadId(submitData); + const { code } = res.data; + if (code !== 200) { + return; + } + ElMessage({ + type: 'success', + message: '发车成功', + }); + + onLoad(); + } catch (error) { + console.log('error :>> ', error); + } finally { + details.loadingObj.pageLoading = false; + } }); - - onLoad(); - }); + } + } catch (error) { + console.log('error :>> ', error); + } finally { + details.loadingObj.pageLoading = false; } }; @@ -924,22 +1013,29 @@ const handleEndCar = async () => { cancelButtonText: '取消', type: 'warning', }).then(async () => { - const submitData = { - loadId: details.selectionList.map(val => val.id).join(','), - startCarType: '2', - }; + try { + details.loadingObj.pageLoading = true; + const submitData = { + loadId: details.selectionList.map(val => val.id).join(','), + startCarType: '2', + }; - const res = await postCancelStartCarByLoadId(submitData); - const { code } = res.data; - if (code !== 200) { - return; - } - ElMessage({ - type: 'success', - message: '取消成功', - }); + const res = await postCancelStartCarByLoadId(submitData); + const { code } = res.data; + if (code !== 200) { + return; + } + ElMessage({ + type: 'success', + message: '取消成功', + }); - onLoad(); + onLoad(); + } catch (error) { + console.log('error :>> ', error); + } finally { + details.loadingObj.pageLoading = false; + } }); }; @@ -1044,24 +1140,53 @@ const handleUnloadByLoadId = (type: 1 | 2) => { cancelButtonText: '取消', type: 'warning', }).then(async () => { - const submitData = { - loadId: details.selectionList.map(val => val.id).join(','), - unloadType: type, - }; + try { + details.loadingObj.pageLoading = true; - const res = await postUnloadByLoadId(submitData); - const { code } = res.data; - if (code !== 200) { - return; - } - ElMessage({ - type: 'success', - message: '卸车成功', - }); + const submitData = { + loadId: details.selectionList.map(val => val.id).join(','), + unloadType: type, + }; + + const res = await postUnloadByLoadId(submitData); + const { code } = res.data; + if (code !== 200) { + return; + } + ElMessage({ + type: 'success', + message: '卸车成功', + }); - onLoad(); + onLoad(); + } catch (error) { + console.log('error :>> ', error); + } finally { + details.loadingObj.pageLoading = false; + } }); }; + +/** 显示装载清单 */ +const handleShowListOfLoadedWagons = async () => { + try { + if (details.selectionList.length === 0) return ElMessage.warning('请选择装载清单'); + if (details.selectionList.length > 1) return ElMessage.warning('只能选择一个装载清单'); + details.loadingObj.pageLoading = true; + const { id } = details.selectionList[0]; + + const res = await postFindLoadingListData({ loadId: id }); + const { code, data } = res.data; + + if (code !== 200) return; + details.popUpShow.listOfLoadedWagons = true; + details.listOfLoadedWagonsData = data; + } catch (error) { + console.log('error :>> ', error); + } finally { + details.loadingObj.pageLoading = false; + } +}; diff --git a/src/views/distribution/artery/VehicleStowage.vue b/src/views/distribution/artery/VehicleStowage.vue index 8be2cad6..16619762 100644 --- a/src/views/distribution/artery/VehicleStowage.vue +++ b/src/views/distribution/artery/VehicleStowage.vue @@ -61,7 +61,9 @@
新增配载 打 印 - 装载清单 + + 装载清单 + 装载卸车清单(财务) @@ -351,7 +353,6 @@ :fullscreen="details.fullscreenObj.listOfLoadedWagonsPopUp" :show-close="false" class="listOfLoadedWagonsPopUp" - v-loading="details.loadingObj.truckLoadingDetailPopUpTable" >