From a98e6342c3fb82e059ec1b13dce48b77772ed93d Mon Sep 17 00:00:00 2001 From: zhangdi <15053473693@163.com> Date: Thu, 5 Feb 2026 15:52:46 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9C=A8=E5=88=B6=E5=93=81=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E9=80=BB=E8=BE=91=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/productionManagement/WIPChange.vue | 25 ++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/src/views/productionManagement/WIPChange.vue b/src/views/productionManagement/WIPChange.vue index 7a2d4fe..448899a 100644 --- a/src/views/productionManagement/WIPChange.vue +++ b/src/views/productionManagement/WIPChange.vue @@ -173,7 +173,7 @@ export default { }, { label: '调度员', - prop: 'searchCode', + prop: 'dispatchManName', search: true, sortable: true, filter: true, @@ -233,6 +233,28 @@ export default { closeDialog() { this.isHandleShow = false; this.isAssignShow = false; + }, + 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; @@ -240,7 +262,6 @@ export default { this.data = res.data.data.records; this.loading = false; this.page.total = res.data.data.total; - this.selectionClear(); }); }, },