From 0f750e20280fcf428d5134a0397d26a01061a59a Mon Sep 17 00:00:00 2001 From: zhangdi <15053473693@163.com> Date: Thu, 5 Feb 2026 16:11:26 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BC=BA=E4=BB=B6=E7=94=B3=E6=8A=A5=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../shortageApplication.vue | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/src/views/procurementManagement/shortageApplication.vue b/src/views/procurementManagement/shortageApplication.vue index 4bc99c7..e5f6bfb 100644 --- a/src/views/procurementManagement/shortageApplication.vue +++ b/src/views/procurementManagement/shortageApplication.vue @@ -42,6 +42,7 @@ export default { }, data() { return { + loading: false, declareAddShow: false, selectionList: [], option: { @@ -250,6 +251,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(); + }, // 多选 selectionChange(list) { this.selectionList = list;