From 0b10641c73273850972b298f749d2584a00f283a Mon Sep 17 00:00:00 2001 From: xzg <4727863@qq.com> Date: Tue, 20 Feb 2024 16:40:12 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8C=87=E6=A0=87=E5=88=97=E8=A1=A8=E5=AF=BC?= =?UTF-8?q?=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/classify/classify.js | 11 + src/option/supervise/supervise.js | 28 +- src/views/aftersales/aftersalesWorkOrder.vue | 375 ++++++++++-------- .../aftersales/aftersalesWorkOrderAdd.vue | 13 +- .../aftersales/aftersalesWorkOrderInfo.vue | 12 +- .../aftersales/aftersalesWorkOrderend.vue | 9 +- .../aftersales/aftersalesWorkOrdermodify.vue | 53 +-- src/views/supervise/IndicatorList.vue | 17 +- 8 files changed, 299 insertions(+), 219 deletions(-) diff --git a/src/api/classify/classify.js b/src/api/classify/classify.js index b3e10c3e..b371e62d 100644 --- a/src/api/classify/classify.js +++ b/src/api/classify/classify.js @@ -121,3 +121,14 @@ export const $_selectPointList = (data) => { data }) } + + +// 导出 +export const $_exportIndicatorsList = (data) => { + return request({ + url: '/api/logpm-supervise/indicators/exportIndicatorsList', + data, + method: 'post', + responseType: 'blob', + }) +} \ No newline at end of file diff --git a/src/option/supervise/supervise.js b/src/option/supervise/supervise.js index 3a1f3d5e..e9b270ea 100644 --- a/src/option/supervise/supervise.js +++ b/src/option/supervise/supervise.js @@ -186,8 +186,8 @@ export const IndicatorColumnList = [ fixed: true, }, { - prop: 'classifyName', - label: '指标名称', + prop: 'assessDeptName', + label: '考核部门', type: 1, values: '', width: '130', @@ -197,8 +197,8 @@ export const IndicatorColumnList = [ head: false, }, { - prop: 'parentClassifyName', - label: '指标分类', + prop: 'assessDeptName', + label: '考核人', type: 1, values: '', width: '130', @@ -208,8 +208,8 @@ export const IndicatorColumnList = [ head: false, }, { - prop: 'examineDeptName', - label: '考核范围', + prop: 'classifyName', + label: '指标名称', type: 1, values: '', width: '130', @@ -219,8 +219,8 @@ export const IndicatorColumnList = [ head: false, }, { - prop: 'assessDeptName', - label: '考核部门', + prop: 'parentClassifyName', + label: '指标分类', type: 1, values: '', width: '130', @@ -229,6 +229,18 @@ export const IndicatorColumnList = [ sortable: true, head: false, }, + { + prop: 'examineDeptName', + label: '考核范围', + type: 1, + values: '', + width: '130', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { prop: 'point', diff --git a/src/views/aftersales/aftersalesWorkOrder.vue b/src/views/aftersales/aftersalesWorkOrder.vue index f87f6b9f..2ec63509 100644 --- a/src/views/aftersales/aftersalesWorkOrder.vue +++ b/src/views/aftersales/aftersalesWorkOrder.vue @@ -19,7 +19,7 @@
@@ -27,13 +27,11 @@ - -
-
+
添加赔款方 添加受款方
@@ -597,7 +597,7 @@ -
+
移除 @@ -697,7 +697,7 @@ @click="UnpaidClaimsEdited" v-if="$route.query.Resultediting" > - 理赔金额未出编辑提交 + 处理结果修改提交 @@ -1114,7 +1114,27 @@ const onLoad = () => { ProcessingResults.value = res.data.data; console.log(ProcessingResults.value, '发现环节'); }); - +// 统计包件个数 +const Statistics = () => { + // 订单统计包件个数 + if (identifying.value == 1) { + Indexform.value.number = 0; + PackageInfo.value.map(res => { + if (res.packageCode) { + Indexform.value.number++; + } + }); + } else { + // 零担统计包件个数 + Indexform.value.number = 0; + PackageInfo.value.map(res => { + console.log(res); + if (res.waybillNumber) { + Indexform.value.number++; + } + }); + } +}; // 支付方式字典 getDictionaryBiz('payment_method').then(res => { //处理结果字典 @@ -1139,7 +1159,7 @@ const onLoad = () => { $_getInfo({ id: $route.query.id }).then(res => { - + @@ -1351,31 +1371,12 @@ const onLoad = () => { item => item.value == Indexform.value.workOrderType ).value; console.log(SelectType.value, '异常类型'); + Statistics() }); }; onLoad(); //初始化程序 -// 统计包件个数 -const Statistics = () => { - // 订单统计包件个数 - if (identifying.value == 1) { - Indexform.value.number = 0; - PackageInfo.value.map(res => { - if (res.packageCode) { - Indexform.value.number++; - } - }); - } else { - // 零担统计包件个数 - Indexform.value.number = 0; - PackageInfo.value.map(res => { - console.log(res); - if (res.waybillNumber) { - Indexform.value.number++; - } - }); - } -}; + // 异常类型事件 const abnormalChange = val => { diff --git a/src/views/supervise/IndicatorList.vue b/src/views/supervise/IndicatorList.vue index 29799b51..73794a36 100644 --- a/src/views/supervise/IndicatorList.vue +++ b/src/views/supervise/IndicatorList.vue @@ -395,6 +395,7 @@ import { $_selectParentCalssifyList, $_parentId, $_selectPointList, + $_exportIndicatorsList, } from '@/api/classify/classify'; const loadingclassification = ref(false); //指标分类加载效果 const classificationdata = ref([]); //指标分类数据 @@ -680,7 +681,21 @@ const BatchDelete = () => { // 导出 const exportList=()=>{ - + ElMessageBox.confirm('是否导出数据?', { + confirmButtonText: '确定', + cancelButtonText: '取消', + type: 'warning', + }) + .then(() => { + console.log('导出数据'); + let data={ + ...searchFrom.value + } + $_exportIndicatorsList(data).then(res => { + downloadXls(res.data, `导出数据.xlsx`); + }); + }) + .catch(() => {}); } // 分类删除 const CategoryDeletion = val => {