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 {