From 82fe71a5b9eb3963d83339b2bc4467fa2c5f87f3 Mon Sep 17 00:00:00 2001 From: xzg <4727863@qq.com> Date: Mon, 16 Dec 2024 18:11:27 +0800 Subject: [PATCH 1/4] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=B7=B2=E7=9F=A5bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../basicdata/basicdataTripartiteMall.js | 2 +- .../aftersales/aftersalesWorkOrderInfo.vue | 21 +------------------ 2 files changed, 2 insertions(+), 21 deletions(-) diff --git a/src/option/basicdata/basicdataTripartiteMall.js b/src/option/basicdata/basicdataTripartiteMall.js index 607f1958..44cee612 100644 --- a/src/option/basicdata/basicdataTripartiteMall.js +++ b/src/option/basicdata/basicdataTripartiteMall.js @@ -93,7 +93,7 @@ export default { // prop: "client", // }, { - label: "三方商城", + label: "三方商场", prop: "tripartiteMall", }, { diff --git a/src/views/aftersales/aftersalesWorkOrderInfo.vue b/src/views/aftersales/aftersalesWorkOrderInfo.vue index fb05b0a8..0f22569b 100644 --- a/src/views/aftersales/aftersalesWorkOrderInfo.vue +++ b/src/views/aftersales/aftersalesWorkOrderInfo.vue @@ -1546,23 +1546,6 @@ const PermissionButton = computed(() => ({ Confirm_review: isConfirmReview(), //审核确定 })); -// 是否显示处理结果 -const Processingrelease = () => { - if (Indexform.value.processor.length == 1 && Mydata.value.id == Indexform.value.processor[0]) { - ProcessingreleaseState.value = true; //显示处理放 - } else { - ProcessingreleaseState.value = false; //关闭处理方 - } -}; - -// 对调查经过输入框进行处理 -const isShowFormItem1 = computed(() => { - return !['1', '2', '5', '6', '7'].includes(groundlineType.value); -}); -// 对调查经过输入框进行处理 -const isShowFormItem2 = computed(() => { - return !['2', '5', '6', '7', '8'].includes(groundlineType.value); -}); // 聊天刷新 const Chatrefresh = () => { Chathistory(); @@ -1611,8 +1594,7 @@ const addingRecord = () => { }, }); }; -// 待审核里面确定审核 -const ConfirmReview = () => {}; + // 完结 const EndJump = () => { $router.push({ @@ -2505,7 +2487,6 @@ const ResultDetermination = () => { .el-tag { width: 70px; } - } } From 4dfe34c39cf45a724307ff7890f1670649b342bf Mon Sep 17 00:00:00 2001 From: qb <1191961160@qq.com> Date: Tue, 17 Dec 2024 09:25:43 +0800 Subject: [PATCH 2/4] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=89=98=E7=9B=98?= =?UTF-8?q?=E6=89=93=E5=8D=B0=E5=92=8C=E9=83=A8=E5=88=86=E6=90=9C=E7=B4=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/basicdata/basicdataTray.js | 8 ++++---- src/views/basicdata/warehouse/tray/basicdataTray.vue | 4 ++-- src/views/reportforms/ConsigneeReport.vue | 4 ++-- src/views/reportforms/SalesDepartmentIncomeReport.vue | 6 +++--- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/api/basicdata/basicdataTray.js b/src/api/basicdata/basicdataTray.js index 9b870435..393e7124 100644 --- a/src/api/basicdata/basicdataTray.js +++ b/src/api/basicdata/basicdataTray.js @@ -79,11 +79,11 @@ export const getPrintTemplate = ids => { }; /** 获取托盘码PDF */ -export const getDownloadTrayCode = ids => { +export const postDownPdf = ids => { return request({ - url: '/api/logpm-basicdata/tray/getPDF', - method: 'get', - params: { + url: '/api/logpm-basicdata/tray/downPdf', + method: 'post', + data: { ids, }, responseType: 'blob', diff --git a/src/views/basicdata/warehouse/tray/basicdataTray.vue b/src/views/basicdata/warehouse/tray/basicdataTray.vue index 3c91263b..ea3fae95 100644 --- a/src/views/basicdata/warehouse/tray/basicdataTray.vue +++ b/src/views/basicdata/warehouse/tray/basicdataTray.vue @@ -302,7 +302,7 @@ import { add, update, getPrintTemplate, - getDownloadTrayCode, + postDownPdf, disable, addable, vacants, @@ -649,7 +649,7 @@ const handleDownLoadTrayCode = async () => { } let qr = details.selectionList.map(item => item.id).join(','); console.log(qr); - const res = await getDownloadTrayCode(qr); + const res = await postDownPdf(qr); console.log(res); const { status, data } = res; if (status !== 200) return; diff --git a/src/views/reportforms/ConsigneeReport.vue b/src/views/reportforms/ConsigneeReport.vue index 53299701..79a56ab9 100644 --- a/src/views/reportforms/ConsigneeReport.vue +++ b/src/views/reportforms/ConsigneeReport.vue @@ -5,7 +5,7 @@