123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429 |
- <template>
- <div v-loading="loading" element-loading-text="拼命加载中" element-loading-spinner="el-icon-loading" element-loading-background="rgba(0, 0, 0, 0.8)" class="table-wrapper">
- <el-table ref="table" v-el-table-infinite-scroll="load" :data="dealedTableData" :header-cell-class-name="headerCellClass" :row-class-name="rowClass" :cell-class-name="cellClass" :span-method="tableSpanMethod" :show-summary="showSummary" :summary-method="tableSummaryMethod" :height="height" stripe fit border @select="handleSelectionChange" @cell-click="cellClickHandler">
- <el-table-column v-if="selected" type="selection" width="55">
- </el-table-column>
- <el-table-column v-for="col in filteredTableCols" :key="col.pagecode" :prop="col.pagecode" :label="col.pagename" :width="col.displaywidth+'px'" :show-overflow-tooltip="showOverflowTooltip" :formatter="tableFormatter">
- <el-table-column v-for="colItem in col.children" :key="colItem.pagecode" :prop="colItem.pagecode" :label="colItem.pagename" :width="colItem.displaywidth+'px'" :show-overflow-tooltip="showOverflowTooltip" :formatter="tableFormatter">
- <template #header>
- <el-tooltip :content="colItem.pagedescribe || colItem.pagename" placement="top">
- <TableHeaderCell :label="colItem.pagename" :filter-options="tableDataFilters[colItem.pagecode]" :filter-values.sync="filterValues[col.pagecode]" filter-style="arrow" :sortable="!!colItem.enablesort" :sort-rule.sync="tableDataSortRules[colItem.pagecode]" />
- </el-tooltip>
- </template>
- <template slot-scope="scope">
- <span v-if="!colItem.backgroundcolorexpression">{{ scope.row[colItem.pagecode] }}</span>
- <div v-else :class="isTrue(scope.row[colItem.pagecode],colItem.backgroundcolorexpression )"></div>
- </template>
- </el-table-column>
- <template #header>
- <el-tooltip :content="col.pagedescribe || col.pagename" placement="top">
- <TableHeaderCell :label="col.pagename" :filter-options="tableDataFilters[col.pagecode]" :filter-values.sync="filterValues[col.pagecode]" filter-style="arrow" :sortable="!!col.enablesort" :sort-rule.sync="tableDataSortRules[col.pagecode]" />
- </el-tooltip>
- </template>
- <template slot-scope="scope">
- <span v-if="!col.backgroundcolorexpression">{{ scope.row[col.pagecode] }}</span>
- <div v-else :class="isTrue(scope.row[col.pagecode],col.backgroundcolorexpression )"></div>
- </template>
- </el-table-column>
- <el-table-column v-if="dealedTableData.length && tableBtns.length" fixed="right" width="240" label="操作">
- <template slot-scope="scope">
- <div class="hd-td">
- <el-scrollbar style="height: 100%">
- <AuthButton v-for="(item,index) in tableBtns" :key="index" :auth="item" :row="scope.row" />
- </el-scrollbar>
- </div>
- </template>
- </el-table-column>
- </el-table>
- </div>
- </template>
- <script>
- import TableHeaderCell from '../TableHeaderCell'
- import AuthButton from '@/components/AuthButton'
- import { setTableFilters } from '@/utils/table'
- import { mapGetters } from 'vuex'
- export default {
- name: 'SimpleTable',
- components: { TableHeaderCell, AuthButton },
- props: {
- loading: {
- type: Boolean,
- default: false
- },
- height: {
- type: [String, Number],
- default: '100%'
- },
- tableCols: {
- type: Array,
- default: () => []
- },
- tableBtns: {
- type: Array,
- default: () => []
- },
- selectedDatas: {
- type: Array,
- default: () => []
- },
- selectedCheck: {
- type: Object,
- default: () => new Object()
- },
- data: {
- type: Array,
- default: () => []
- },
- headerCellClassName: {
- type: Function
- },
- rowClassName: {
- type: Function
- },
- cellClassName: {
- type: Function
- },
- spanMethod: {
- type: Function
- },
- // 是否显示合计行
- showSummary: {
- type: Boolean,
- default: false
- },
- summaryMethod: {
- type: Function
- },
- // 不换行,溢出隐藏
- showOverflowTooltip: {
- type: Boolean,
- default: true
- },
- formatter: {
- type: Function
- },
- selected: {
- type: Number,
- default: 0
- },
- fastFilter: {
- type: Function,
- default: () => () => true
- },
- },
- data () {
- return {
- tableData: [],
- tableDataFilters: {}, // 表头-下拉数据
- filterValues: {}, // 表头-下拉-选中数据
- tableDataSortRules: {}, // 表头-排序
- tableGroups: [], // 表格分组规则
- spanArr: [] // 表格分组数据缓存
- }
- },
- computed: {
- ...mapGetters(['clickedCells']),
- filteredTableCols () {
- return this.tableCols.filter(col => col.isdisplay != 0)
- },
- fastFilteredTableData () {
- return this.tableData.filter(this.fastFilter)
- },
- dealedTableData () {
- const filtered = this.fastFilteredTableData.filter(item => {
- let flag = true
- Object.entries(this.filterValues).forEach(([key, arr]) => {
- if (arr.length && !arr.includes(String(item[key]))) {
- flag = false
- }
- })
- return flag
- })
- const sortRules = Object.entries(this.tableDataSortRules).reduce(
- (pre, [key, value]) => {
- if (value) {
- pre[0].push(key)
- value = value === 'ascending' ? 'asc' : 'desc'
- pre[1].push(value)
- }
- return pre
- },
- [[], []]
- )
- return this._.orderBy(filtered, sortRules[0], sortRules[1])
- }
- },
- watch: {
- data: {
- handler (arr) {
- this.tableData = arr
- },
- deep: true
- },
- tableData: {
- handler () {
- this.setTableFilters()
- },
- deep: true
- },
- tableCols: {
- handler () {
- this.setTableFilters()
- },
- deep: true
- },
- selectedDatas: {
- handler (rows) {
- this.$refs.table.clearSelection()
- if (rows) {
- this.$nextTick(() => {
- rows.forEach(row => {
- this.$refs.table.toggleRowSelection(row)
- })
- })
- }
- },
- deep: true
- },
- dealedTableData: {
- handler (arr) {
- const spanArr = []
- let pos = 0
- arr.forEach((item, index, arr) => {
- if (index === 0) {
- spanArr.push(1)
- } else {
- if (this.tableGroups.every(prop => arr[index][prop] === arr[index - 1][prop])) {
- spanArr[pos] += 1
- spanArr.push(0)
- } else {
- spanArr.push(1)
- pos = index
- }
- }
- })
- this.spanArr = spanArr
- },
- deep: true
- },
- headerCellClassName: {
- handler (func) {
- if (func) {
- this.headerCellClass = func().bind(this)
- }
- },
- deep: true,
- immediate: true
- },
- rowClassName: {
- handler (func) {
- if (func) {
- this.rowClass = func().bind(this)
- }
- },
- deep: true,
- immediate: true
- },
- cellClassName: {
- handler (func) {
- if (func) {
- this.cellClass = func().bind(this)
- }
- },
- deep: true,
- immediate: true
- },
- spanMethod: {
- handler (func) {
- if (func) {
- this.tableSpanMethod = func().bind(this)
- }
- },
- deep: true,
- immediate: true
- },
- summaryMethod: {
- handler (func) {
- if (func) {
- this.tableSummaryMethod = func().bind(this)
- }
- },
- deep: true,
- immediate: true
- },
- formatter: {
- handler (func) {
- if (func) {
- this.tableFormatter = func().bind(this)
- }
- },
- deep: true,
- immediate: true
- }
- },
- mounted () {
- this.$emit('mounted', 'table', this.$refs['table'])
- },
- updated () {
- this.$refs['table']?.doLayout()
- },
- methods: {
- isTrue (row, data) {
- return eval(data)
- },
- load () {
- this.$emit('load')
- },
- headerCellClass ({ row, column, rowIndex, columnIndex }) {
- const classes = []
- const rule = this.tableDataSortRules[column.property]
- if (rule) {
- classes.push(rule)
- }
- return classes.join(' ')
- },
- rowClass () {
- return ''
- },
- cellClass () {
- return ''
- },
- tableSpanMethod ({ row, column, rowIndex, columnIndex }) {
- if (this.tableGroups.includes(column.property)) {
- const _row = this.spanArr[rowIndex]
- const _col = _row > 0 ? 1 : 0
- return {
- rowspan: _row,
- colspan: _col
- }
- }
- },
- tableSummaryMethod (param) {
- const { columns, data } = param
- const sums = []
- columns.forEach((column, index) => {
- this.tableCols.forEach(p => {
- if (column.property === p.pagecode && p.enablecount) {
- const values = data.map(item => Number(item[column.property]))
- if (!values.every(value => isNaN(value))) {
- sums[index] = values.reduce((prev, curr) => {
- const value = Number(curr)
- if (!isNaN(value)) {
- return prev + curr
- } else {
- return prev
- }
- }, 0)
- sums[index] += ''
- }
- }
- })
- })
- return sums
- },
- cellClickHandler (...params) {
- this.$emit('cell-click', ...params)
- },
- tableFormatter (row, column, cellValue) {
- return cellValue
- },
- setTableFilters () {
- this.tableDataFilters = {}
- this.filteredTableCols.forEach(col => {
- if (col.enablefilter) {
- this.tableDataFilters[col.pagecode] = []
- }
- if (col.enablegroup) {
- this.tableGroups.push(col.pagecode)
- }
- })
- setTableFilters(this.tableData, this.tableDataFilters)
- },
- //表格-查看
- handleDetail (row) {
- this.$emit('handleDetail', row)
- },
- //表格-编辑
- handleEdit (row) {
- this.$emit('handleEdit', row)
- },
- //表格-其他类型按钮操作
- handleOther (row, auth) {
- this.$emit('handleOther', row, auth)
- },
- //表格-删除
- handleRemove (row) {
- this.$emit('handleRemove', row)
- },
- //表格-勾选
- handleSelectionChange (val) {
- if (!Object.keys(this.selectedCheck).length) {
- this.$refs.table.clearSelection()
- this.$message.error('请选中容器后再操作')
- return
- }
- this.$emit('handleSelectionChange', val)
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .table-wrapper {
- width: 100%;
- height: 100%;
- ::v-deep .el-table {
- width: 100%;
- .cell {
- padding: 0;
- text-align: center;
- font-size: 14px;
- font-family: Helvetica, "Microsoft YaHei";
- letter-spacing: 0;
- .success {
- width: 15px;
- height: 15px;
- background: #0fc956;
- margin-left: calc(50% - 8px);
- }
- .error {
- width: 15px;
- height: 15px;
- background: #c92b0f;
- margin-left: calc(50% - 8px);
- }
- }
- .cell-click {
- cursor: pointer;
- color: #2d7cff;
- &.cell-clicked {
- color: purple;
- }
- }
- .el-table__header-wrapper {
- .cell {
- font-weight: bold;
- color: #101116;
- > .el-checkbox {
- display: none;
- }
- }
- }
- .hd-td {
- white-space: nowrap;
- width: 100%;
- padding: 0 10px;
- }
- }
- }
- .no-column {
- padding-top: 20px;
- background-color: #ffffff;
- color: #909399;
- text-align: center;
- font-size: 20px;
- font-family: Helvetica, "Microsoft YaHei";
- }
- </style>
|