From 52d14c7e559f113a29aa252d1872f5f39da37936 Mon Sep 17 00:00:00 2001 From: hongchao <3228015117@qq.com> Date: Fri, 21 Mar 2025 13:46:28 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=93=E7=AE=97=E7=AE=A1=E7=90=86=E6=89=B9?= =?UTF-8?q?=E9=87=8F=E7=BB=93=E7=AE=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/material/cost/component/applyDetail.vue | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/views/material/cost/component/applyDetail.vue b/src/views/material/cost/component/applyDetail.vue index 0e6e3afe..eec880d3 100644 --- a/src/views/material/cost/component/applyDetail.vue +++ b/src/views/material/cost/component/applyDetail.vue @@ -462,6 +462,15 @@ export default { `全部费用明细_${new Date().getTime()}.xlsx`, ) }, + handleExportEach() { + let data = _.cloneDeep(this.rowData); + const params = {params:JSON.stringify(data)} + this.download( + 'material/slt_agreement_info/exportEach', + {...params,}, + `各费用明细_${new Date().getTime()}.xlsx`, + ) + }, }, }