From 719a308f2971d23773b83613e0ce26e8b6516a58 Mon Sep 17 00:00:00 2001 From: qb <1191961160@qq.com> Date: Sat, 8 Feb 2025 17:35:51 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=8A=A5=E8=A1=A8=E9=83=A8?= =?UTF-8?q?=E5=88=86=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/option/reportforms/AuditTimelinessRatioReport.js | 2 +- src/option/reportforms/PackageAllTrunklineTimePageReport.js | 2 +- src/views/reportforms/AuditTimelinessRatioReport.vue | 6 ++++++ 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/option/reportforms/AuditTimelinessRatioReport.js b/src/option/reportforms/AuditTimelinessRatioReport.js index c3bdf9b2..56772596 100644 --- a/src/option/reportforms/AuditTimelinessRatioReport.js +++ b/src/option/reportforms/AuditTimelinessRatioReport.js @@ -83,7 +83,7 @@ export const columnList = [ isshowSummary: true, //开启统计 }, { - prop: 'hasCheckNum', + prop: 'notCheckNum', label: '未审单数', type: 1, values: '', diff --git a/src/option/reportforms/PackageAllTrunklineTimePageReport.js b/src/option/reportforms/PackageAllTrunklineTimePageReport.js index 159c0074..35ce3e9f 100644 --- a/src/option/reportforms/PackageAllTrunklineTimePageReport.js +++ b/src/option/reportforms/PackageAllTrunklineTimePageReport.js @@ -359,7 +359,7 @@ export const columnList = [ { prop: 'hoursTime', label: '标准时效(小时)', - type: 6, + type: 1, values: '', width: '150', checkarr: [], diff --git a/src/views/reportforms/AuditTimelinessRatioReport.vue b/src/views/reportforms/AuditTimelinessRatioReport.vue index 80819a66..dc0aff65 100644 --- a/src/views/reportforms/AuditTimelinessRatioReport.vue +++ b/src/views/reportforms/AuditTimelinessRatioReport.vue @@ -316,6 +316,12 @@ const onLoad = async (params = {}) => { details.page.total = data.total; handleTranslationDataSeclect(details.data, details.columnList); + + for (let i = 0; i < details.data.length; i++) { + const value = details.data[i]; + + value.notCheckNum = value.totalNum - value.hasCheckNum; + } } catch (error) { console.log('error :>> ', error); } finally {