From 17d224a823e7342f82856d4baf9f73bdf813a3ea Mon Sep 17 00:00:00 2001
From: shishuaikang <280848880@qq.com>
Date: 星期五, 01 十二月 2023 09:32:56 +0800
Subject: [PATCH] h5页面定时器改1分钟
---
web/src/views/SecureManage/NipCheck/components/ScoreDetails.vue | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/web/src/views/SecureManage/NipCheck/components/ScoreDetails.vue b/web/src/views/SecureManage/NipCheck/components/ScoreDetails.vue
index fe8acde..f3acbfa 100644
--- a/web/src/views/SecureManage/NipCheck/components/ScoreDetails.vue
+++ b/web/src/views/SecureManage/NipCheck/components/ScoreDetails.vue
@@ -106,7 +106,7 @@
</div>
<div class="header_item">
<el-button icon="el-icon-search" v-if="showButton('search')" @click="searchFormButtonInfo(true,userIds)">查询</el-button>
- <el-button class="search_btn" icon="el-icon-plus" v-if="showButton('export')" @click="exportFiles">导出Excel</el-button>
+ <el-button class="search_btn" icon="el-icon-plus" v-if="showButton('export')" @click="exportFiles(userIds)">导出Excel</el-button>
</div>
</div>
<div class="score_index">
@@ -273,13 +273,14 @@
})
},
//导出excel
- exportFiles(){
+ exportFiles(userId){
let params = {}
params.startTime = this.search.time&&this.search.time[0]
params.endTime = this.search.time&&this.search.time[1]
+ params.userId = userId
delete params.time
this.functionLoading();
- this.$api.Safety.exportMarketFiles(params).then(res => {
+ this.$api.Safety.exportIntegralFiles(params).then(res => {
downFiles(res, '积分明细信息', 'xls')
this.loadingView.close()
})
--
Gitblit v1.9.3