From 1cb38dbdb58bc3966453ca43585140323e50d1b8 Mon Sep 17 00:00:00 2001 From: zhaowei <zhaowei> Date: 星期三, 20 八月 2025 09:15:51 +0800 Subject: [PATCH] 1、二、三保工单增加批量打印及导出完工单和验收单功能 2、二保工单审批流程图展示增加滚动条 3、html导出成excel工具方法增加单元格换行展示以及自适应换行高度功能 --- src/views/mdc/base/modules/openRateFractionAnalysis/openRateFractionAnalysisMain.vue | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/mdc/base/modules/openRateFractionAnalysis/openRateFractionAnalysisMain.vue b/src/views/mdc/base/modules/openRateFractionAnalysis/openRateFractionAnalysisMain.vue index 8aff73a..5b492c7 100644 --- a/src/views/mdc/base/modules/openRateFractionAnalysis/openRateFractionAnalysisMain.vue +++ b/src/views/mdc/base/modules/openRateFractionAnalysis/openRateFractionAnalysisMain.vue @@ -213,15 +213,14 @@ * 鐢熷懡鍛ㄦ湡 鎸傝浇鍓� * */ created() { - this.searchReset() this.queryGroup() this.getDriveTypeByApi() this.initDictData('device_level') this.initDictData('device_importance_level') - }, mounted() { this.tableScroll = document.querySelector('.table2') + this.searchReset() window.addEventListener('resize',this.handleWindowResize) }, beforeDestroy() { @@ -437,6 +436,7 @@ } this.queryParam = {} this.dates = [moment().subtract('days', 8), moment().subtract('days', 1)] + this.requestAllDataSize = this.dates[1].diff(this.dates[0],'days') + 1 this.queryParam.startDate = moment(this.dates[0]).format('YYYYMMDD') this.queryParam.endDate = moment(this.dates[1]).format('YYYYMMDD') this.queryParam.startTime = '00:00' -- Gitblit v1.9.3