From 5be6c4285bfdbdfe5c28f68f6ab0aadb73171b21 Mon Sep 17 00:00:00 2001 From: wuteng <419274783@qq.com> Date: Fri, 26 Dec 2025 15:52:26 +0800 Subject: [PATCH] =?UTF-8?q?=E5=87=BA=E5=8F=A3=E6=B8=85=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../emis/emisWaybill/sendWaybillList.vue | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/src/views/emis/emisWaybill/sendWaybillList.vue b/src/views/emis/emisWaybill/sendWaybillList.vue index 11f1cd57..730603b1 100644 --- a/src/views/emis/emisWaybill/sendWaybillList.vue +++ b/src/views/emis/emisWaybill/sendWaybillList.vue @@ -336,6 +336,16 @@ v-hasPermi="['emis:emisWaybill:export']" >导出 + + 出口清单导出 + @@ -1248,7 +1258,14 @@ export default { getIndex($index) { return (this.queryParams.pageNum - 1) * this.queryParams.pageSize + $index + 1 }, - + handleExportExportList(){ + let qExportParam=this.initQueryParams(); + qExportParam.pageNum=1; + qExportParam.pageSize=10000; + this.download('emis/emisWaybill/exportExportList', { + ...qExportParam + }, `出口清单.xlsx`) + }, } };