From c3922782e0f0eb6603aa073b806240b9b3b18986 Mon Sep 17 00:00:00 2001 From: zhangdi <15053473693@163.com> Date: Tue, 10 Feb 2026 09:51:37 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8A=A5=E5=B7=A5=E8=AF=A6=E6=83=85=E8=B0=83?= =?UTF-8?q?=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../productionManagement/js/wordReporting.js | 2 +- .../workReportingManagement.vue | 22 +++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/src/views/productionManagement/js/wordReporting.js b/src/views/productionManagement/js/wordReporting.js index 1214ad0..e47ac30 100644 --- a/src/views/productionManagement/js/wordReporting.js +++ b/src/views/productionManagement/js/wordReporting.js @@ -165,7 +165,7 @@ export default { }, { label: '调整时间', - prop: 'adjustmentTime', + prop: 'updateTime', span: 24, overflow: true, search: false, diff --git a/src/views/productionManagement/workReportingManagement.vue b/src/views/productionManagement/workReportingManagement.vue index 39e9401..7201181 100644 --- a/src/views/productionManagement/workReportingManagement.vue +++ b/src/views/productionManagement/workReportingManagement.vue @@ -224,6 +224,28 @@ export default { } }); }, + currentChange(currentPage) { + this.page.currentPage = currentPage; + this.onLoad(this.page, this.query); + }, + sizeChange(pageSize) { + this.page.pageSize = pageSize; + this.onLoad(this.page, this.query); + }, + refreshChange() { + this.onLoad(this.page, this.query); + }, + searchReset() { + this.query = {}; + this.treeDeptId = ''; + this.onLoad(this.page, this.query); + }, + searchChange(params, done) { + this.query = params; + this.page.currentPage = 1; + this.onLoad(this.page, params); + done(); + }, // 页面切换获取数据 onLoad(page, params = {}) { this.loading = true;