From 1f754cc02f00cedc63938fbfe98469e9bc0fdf36 Mon Sep 17 00:00:00 2001 From: rui_li <877258667@qq.com> Date: Wed, 12 Nov 2025 17:32:12 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AF=BC=E5=87=BA=E4=BF=AE=E6=94=B9=20?= =?UTF-8?q?=E5=88=86=E9=A1=B5=E6=9F=A5=E8=AF=A2bUG=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/tooling/manuf_tool.vue | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/views/modules/tooling/manuf_tool.vue b/src/views/modules/tooling/manuf_tool.vue index b41a461..8248a3a 100644 --- a/src/views/modules/tooling/manuf_tool.vue +++ b/src/views/modules/tooling/manuf_tool.vue @@ -195,6 +195,7 @@ export default { calendarId: '', startDate: '', endDate: '', + searchFlag: false, }, currentRow: {}, currentInstanceRow: {}, @@ -845,10 +846,11 @@ export default { //导出excel async createExportData() { - this.searchData.limit = -1 - this.searchData.page = 1 + this.searchData.pageSize = 10000 + this.searchData.pageIndex = 1 await getToolInfoList(this.searchData).then(({data}) => { - this.exportList = data.page.list; + debugger; + this.exportList = data.rows; }) return this.exportList; @@ -1027,6 +1029,7 @@ export default { // 获取数据列表 search() { + this.searchData.searchFlag = true; getToolInfoList(this.searchData).then(({data}) => { if (data.code == 200) { this.dataList = data.rows;