| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <template>
- <div v-loading="loading">
- <div class="white-box">
- <trace-down-yc-filter :filter="handleFilter"></trace-down-yc-filter>
- <el-table class="table-box" ref="multipleTable" :data="tableData" stripe style="width: 100%;" :height="tool.getTableHeight()">
- <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">
- <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">
- <el-button type="success" size="small" @click="handleExport" v-show="permission.hasPermission(`bonus/trace-down-tg-export`)">Export Excel</el-button>
- <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 TraceDownYcFilter from './trace-down-yc-filter'
- import baseInfo from '@/utils/baseInfo'
- import permission from '@/utils/permission'
- import Pagination from '@/components/Pagination'
- export default {
- name: 'bonus_trace-down-xf',
- components: {TraceDownYcFilter,Pagination},
- mounted() {
- this.loading = false
- },
- data() {
- return {
- tableHeaders: null,
- tableData: null,
- loading: true,
- multipleSelection: [],
- currentPage: 1,
- totalPages: 1,
- totalCount: 1,
- pageSize: 20,
- tool: tool,
- permission: permission,
- filterData: null,
- baseDecLevels: baseInfo.decLevels(),
- baseEmpLevels: baseInfo.empLevels(),
- }
- },
- methods: {
- handleCurrentChange(page) {
- this.getData(page, this.pageSize)
- },
- handleSizeChange(pageSize) {
- this.getData(this.currentPage, pageSize)
- },
- handleFilter(model) {
- this.filterData = model
- this.getData(1, this.pageSize)
- },
- getData(page, pageSize) {
- let vueObj = this
- network.getPageData(this, 'bonus/trace-down-xf', page, pageSize, this.filterData, function (response) {
- vueObj.tableData = response.list
- })
- },
- handleExport(){
- this.$confirm(`确定要导出当前数据吗?`, 'Hint', {
- confirmButtonText: 'confirm', // 确定
- cancelButtonText: 'cancel', // 取消
- type: 'warning'
- }).then(() => {
- return network.getData(`bonus/trace-down-xf-export`, this.filterData)
- }).then(response => {
- this.$message({
- message: response,
- type: 'success'
- })
- }).catch(response => {
- })
- },
- }
- }
- </script>
- <style scoped>
- .table-box .el-form-item__label {
- width: 100px;
- color: #99a9bf;
- }
- .table-box .el-form-item {
- width: 30%;
- margin-right: 0;
- margin-bottom: 0;
- }
- </style>
|