浏览代码

modify userlog query and export

haojianlong 5 年之前
父节点
当前提交
e08bae7451
共有 1 个文件被更改,包括 72 次插入54 次删除
  1. 72 54
      src/views/data_admin/buildLog/index.vue

+ 72 - 54
src/views/data_admin/buildLog/index.vue

@@ -2,7 +2,8 @@
   <div style="display: flex; flex-direction: column;flex-grow: 1; flex-shrink: 1;">
     <div class="log-main">
       <div class='condition'>
-        <el-input v-model.trim='searchValue' class='margin-right' style='width: 300px;' placeholder='请输入操作人、动作、对象id等关键字搜索' @change='searchChange'>
+        <el-input v-model.trim='searchValue' class='margin-right' style='width: 300px;' placeholder='请输入操作人、动作、对象id等关键字搜索'
+          @keyup.enter.native="searchChange">
         </el-input>
         <el-date-picker class='margin-right' v-model='dateValue' type='daterange' align='center' :clearable='false' unlink-panels range-separator='至'
           start-placeholder='开始日期' end-placeholder='结束日期' :picker-options='pickerOptions' @change='dateChange' value-format='yyyy-MM-dd'>
@@ -12,24 +13,13 @@
         <p style="text-align: right; padding: 10px">
           <el-button style="width: 96px" @click='action'>动作说明</el-button>
           <el-button style="width: 96px" @click='refresh'>刷新</el-button>
-          <el-button style="width: 96px" @click='downExcel'>导出到Excel</el-button>
+          <el-button style="width: 96px" @click='downExcel(1)'>导出到Excel</el-button>
         </p>
         <div style="height: calc(100% - 52px)">
           <el-table :data='tableData' tooltip-effect='dark' style='width: 100%;' v-loading='loading' height="100%"
             :header-cell-style="{background:'#e1e4e5',color:'#2b2b2b'}">
-            <el-table-column prop='CreateTime' label='时间' width='150' align='center' header-align='center'>
-            </el-table-column>
-            <el-table-column prop='Comming' label='来源' width='120' header-align='center' align="center"></el-table-column>
-            <el-table-column prop='Name' label='操作人' width='120' header-align='center' align='center'>
-            </el-table-column>
-            <el-table-column prop='Phone' label='手机' width='150' header-align='center' align='center'></el-table-column>
-            <el-table-column prop='Action' label='动作' width='200' header-align='center' align='center'></el-table-column>
-            <el-table-column prop='UserId' label='对象id' width='300' header-align='center' align='center'></el-table-column>
-            <el-table-column label='操作说明' header-align='left' align="left">
-              <template slot-scope='scope'>
-                <div class='ellipsis' :title='scope.row.Note'>{{scope.row.Note}}</div>
-              </template>
-            </el-table-column>
+            <el-table-column v-for="item in tableHeader" :prop='item.fieldName' :label='item.headerName' :width='item.width' :key="item.fieldName"
+             show-overflow-tooltip></el-table-column>
           </el-table>
         </div>
       </div>
@@ -48,6 +38,7 @@ import { mapGetters, mapActions } from 'vuex'
 import axios from 'axios'
 //component
 import SagaAction from './Action'
+import jsontoExcel from "@/utils/JOSNToExcel"
 
 var date = new Date()
 const nowDate = date.getFullYear() + '-' + (date.getMonth() + 1) + '-' + date.getDate()
@@ -113,7 +104,17 @@ export default {
         pageSizes: [10, 20, 50, 100],
         pageNumber: 1,
         total: 0
-      }
+      },
+      tableHeader: [
+        { fieldName: 'CreateTime', headerName: '时间', width: 150 },
+        { fieldName: 'Comming', headerName: '来源', width: 120 },
+        { fieldName: 'Name', headerName: '操作人', width: 120 },
+        { fieldName: 'Phone', headerName: '手机', width: 150 },
+        { fieldName: 'Action', headerName: '动作', width: 200 },
+        { fieldName: 'UserId', headerName: '对象id', width: 300 },
+        { fieldName: 'Note', headerName: '操作说明', width: 'auto' },
+      ],
+      exportData: []
     }
   },
   components: {
@@ -134,45 +135,62 @@ export default {
       this.$refs['action'].show()
     },
     // 导出
-    downExcel() {
+    downExcel(pageNum) {
+      // let param = {
+      //   startTime: this.dateValue[0] + ' 00:00:00',
+      //   endTime: this.dateValue[1] + ' 23:59:59',
+      //   filter: this.searchValue,
+      //   ProjId: this.projectId,
+      //   UserId: this.userId,
+      //   Comming: 'revit'
+      // }
+      // axios({
+      //   method: 'post',
+      //   url: '/ScanBuilding/service/user_log/export',
+      //   data: param,
+      //   responseType: 'blob'
+      // })
+      //   .then(function (res) {
+      //     var blob = new Blob([res.data], {
+      //       type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8'
+      //     })
+      //     var fileName = res.headers['content-disposition']
+      //     if (fileName) fileName = fileName.substring(fileName.indexOf('=') + 1)
+      //     if ('download' in document.createElement('a')) {
+      //       // 非IE下载
+      //       const elink = document.createElement('a')
+      //       elink.download = fileName
+      //       elink.style.display = 'none'
+      //       elink.href = URL.createObjectURL(blob)
+      //       document.body.appendChild(elink)
+      //       elink.click()
+      //       URL.revokeObjectURL(elink.href) // 释放URL 对象
+      //       document.body.removeChild(elink)
+      //     } else {
+      //       // IE10+下载
+      //       navigator.msSaveBlob(blob, fileName)
+      //     }
+      //   })
+      //   .catch(function (err) {
+      //     console.dirxml(err)
+      //   })
       let param = {
-        startTime: this.dateValue[0] + ' 00:00:00',
-        endTime: this.dateValue[1] + ' 23:59:59',
-        filter: this.searchValue,
-        ProjId: this.projectId,
-        UserId: this.userId,
-        Comming: 'revit'
+        Filters: `CreateTime>='${this.dateValue[0]} 00:00:00';CreateTime<='${this.dateValue[1]} 23:59:59'`,
+        PageNumber: pageNum,
+        PageSize: 1000
+      }
+      if (this.searchValue) {
+        param.Filters += `;Name contain '${this.searchValue}' or Phone contain '${this.searchValue}' or Action contain '${this.searchValue}' or Note contain '${this.searchValue}' or UserId contain '${this.searchValue}'`
       }
-      axios({
-        method: 'post',
-        url: '/ScanBuilding/service/user_log/export',
-        data: param,
-        responseType: 'blob'
+      queryUserLog(param, res => {
+        this.exportData = this.exportData.concat(res.Content);
+        if (res.Total / (res.PageSize * res.PageNumber) > 1) {
+          this.downExcel(pageNum++)
+        } else {
+          let time = +new Date()
+          jsontoExcel.downloadExl(this.tableHeader, this.exportData, `UserLog-${time}`)
+        }
       })
-        .then(function (res) {
-          var blob = new Blob([res.data], {
-            type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8'
-          })
-          var fileName = res.headers['content-disposition']
-          if (fileName) fileName = fileName.substring(fileName.indexOf('=') + 1)
-          if ('download' in document.createElement('a')) {
-            // 非IE下载
-            const elink = document.createElement('a')
-            elink.download = fileName
-            elink.style.display = 'none'
-            elink.href = URL.createObjectURL(blob)
-            document.body.appendChild(elink)
-            elink.click()
-            URL.revokeObjectURL(elink.href) // 释放URL 对象
-            document.body.removeChild(elink)
-          } else {
-            // IE10+下载
-            navigator.msSaveBlob(blob, fileName)
-          }
-        })
-        .catch(function (err) {
-          console.dirxml(err)
-        })
     },
     //切换每页显示多少条数据
     handleSizeChange(val) {
@@ -199,8 +217,8 @@ export default {
       }
       queryUserLog(param, res => {
         this.loading = false
-        this.page.total = res.Content
-        this.tableData = res.LogList
+        this.page.total = res.Total
+        this.tableData = res.Content
       })
     },
     init() {