From 51d5c1ad7bc2196cceec6952a5015efbbad0d6df Mon Sep 17 00:00:00 2001
From: yxh <172933527@qq.com>
Date: 星期一, 14 八月 2023 00:51:15 +0800
Subject: [PATCH] 收费科目修改
---
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