| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <template>
- <div v-loading="loading">
- <div class="white-box">
- <div class="filter-box">
- <filter-user :filter-types.sync="filterTypes" filter-btn-name="Select"
- @select-value="handleFilterUser"></filter-user>
- </div>
- <el-table ref="multipleTable" :data="tableData" stripe style="width: 100%;" @row-click="handleExpand" :height="tool.getTableHeight()">
- <el-table-column type="expand" v-if="tableHeaders">
- <template slot-scope="scope">
- <el-card class="box-card">
- <div slot="header" class="clearfix">
- <span>保存前内容</span>
- </div>
- <ul class="log-content">
- <li v-for="(item,key) in scope.row.save_before_content" :key="key" v-if="chkLabel(item.label)"><span>{{item.label}}:</span><strong>{{item.value}}</strong></li>
- </ul>
- </el-card>
- <el-card class="box-card">
- <div slot="header" class="clearfix">
- <span>保存后内容</span>
- </div>
- <ul class="log-content">
- <li v-for="(item,key) in scope.row.save_after_content" :key="key" v-if="chkLabel(item.label)"><span>{{item.label}}:</span><strong>{{item.value}}</strong></li>
- </ul>
- </el-card>
- </template>
- </el-table-column>
- <el-table-column v-for="(tableHeader, key) in tableHeaders" :key="key" :label="tableHeader.header" :width="tableHeader.other.width ? tableHeader.other.width : ''" :prop="tableHeader.other.prop ? tableHeader.other.prop : null" :show-overflow-tooltip="tableHeader.other['show-overflow-tooltip'] ? tableHeader.other['show-overflow-tooltip'] : false" :min-width="tableHeader.other['min-width'] ? tableHeader.other['min-width'] : ''">
- <template slot-scope="scope">
- <template v-if="scope.row[tableHeader.index].other.tag" >
- <el-tag :type="scope.row[tableHeader.index].other.tag.type ? scope.row[tableHeader.index].other.tag.type : null" :size="scope.row[tableHeader.index].other.tag.size ? scope.row[tableHeader.index].other.tag.size : null" :class="scope.row[tableHeader.index].other.tag.class ? scope.row[tableHeader.index].other.tag.class : null" >{{scope.row[tableHeader.index].value}}</el-tag>
- </template>
- <template v-else>
- <div v-html="scope.row[tableHeader.index].value"></div>
- </template>
- </template>
- </el-table-column>
- </el-table>
- <div class="white-box-footer">
- <pagination :total="totalCount" :page_size="pageSize" @size-change="handleSizeChange" @current-change="handleCurrentChange"></pagination>
- </div>
- </div>
- </div>
- </template>
- <script>
- import network from '@/utils/network'
- import tool from '@/utils/tool'
- import FilterUser from '@/components/FilterUser'
- import Pagination from '@/components/Pagination'
- import permission from '@/utils/permission'
- import filterHelper from '@/utils/filterHelper'
- export default {
- name: 'log_user-handle',
- components: {FilterUser,Pagination},
- mounted() {
- this.getData()
- },
- data() {
- return {
- tableHeaders: null,
- allData: null,
- tableData: null,
- loading: true,
- currentPage: 1,
- totalPages: 1,
- totalCount: 1,
- pageSize: 20,
- tool: tool,
- permission: permission,
- filterTypes: null,
- filterModel: {},
- }
- },
- methods: {
- chkLabel(label){
- let arr = ['ID','USER_ID']
- return !arr.includes(label)
- },
- handleExpand(row, event, column) {
- this.$refs.multipleTable.toggleRowExpansion(row)
- },
- handleCurrentChange(page) {
- this.getData(page, this.pageSize)
- },
- handleSizeChange(pageSize) {
- this.getData(this.currentPage, pageSize)
- },
- handleFilterUser(filterData) {
- filterHelper.handleFilterUser(this, filterData)
- },
- handleFilter() {
- this.getData()
- },
- getData(page, pageSize) {
- let filterData = this.filterModel
- let vueObj = this
- network.getPageData(this, 'log/user-handle', page, pageSize, filterData, function (response) {
- vueObj.filterTypes = response.filterTypes
- vueObj.allData = response
- })
- },
- }
- }
- </script>
- <style scoped>
- .box-card{display: inline-block;min-width: 480px;margin-right: 20px;max-width: 45%; vertical-align: top;}
- .log-content{padding:0 15px;margin: 0;}
- .log-content li{line-height: 2;display: flex}
- .log-content span{display: inline-block;color: #999;width: 200px;white-space: nowrap;}
- .log-content strong{flex: 1;word-break: break-all;}
- </style>
|