From 126d60e2b14c47d390ec05b584b3504465a293d3 Mon Sep 17 00:00:00 2001 From: yxh <172933527@qq.com> Date: 星期六, 12 八月 2023 23:30:13 +0800 Subject: [PATCH] yxh --- src/views/project/fund/officeExpenseApply/index.vue | 18 +++++++++++++++++- 1 files changed, 17 insertions(+), 1 deletions(-) diff --git a/src/views/project/fund/officeExpenseApply/index.vue b/src/views/project/fund/officeExpenseApply/index.vue index 6afd8ef..91215ec 100644 --- a/src/views/project/fund/officeExpenseApply/index.vue +++ b/src/views/project/fund/officeExpenseApply/index.vue @@ -33,7 +33,7 @@ @click="handleExport">瀵煎嚭</el-button> </el-col> <!-- v-hasPermi="['project:medicalfund:export']" --> - <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> + <!-- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> --> </el-row> <el-table v-loading="loading" border :data="donateconsolationfundList"> <el-table-column label="鐢宠鏃ユ湡" align="center" prop="createTime" width="180px"> @@ -892,6 +892,22 @@ }); }); }, + + /** 瀵煎嚭鎸夐挳鎿嶄綔 */ + handleExport() { + const queryParams = this.queryParams; + this.$modal + .confirm("鏄惁纭瀵煎嚭鎵�鏈夋姤閿�鐢宠鏁版嵁椤癸紵") + .then(() => { + this.exportLoading = true; + return exportReimbursement(queryParams); + }) + .then(response => { + this.$download.name(response.msg); + this.exportLoading = false; + }) + .catch(() => {}); + }, handleDelete(row) { const ids = row.id || this.ids; -- Gitblit v1.9.3