From 766effa6e04db9b37b1dc3886d988beaa595c38d Mon Sep 17 00:00:00 2001
From: 张晓波 <bingbo1993@126.com>
Date: 星期二, 12 十二月 2023 09:04:55 +0800
Subject: [PATCH] Merge branch 'master' of http://111.30.93.211:10101/r/supipe

---
 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