index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429
  1. <template>
  2. <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">
  3. <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">
  4. <el-table-column v-if="selected" type="selection" width="55">
  5. </el-table-column>
  6. <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">
  7. <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">
  8. <template #header>
  9. <el-tooltip :content="colItem.pagedescribe || colItem.pagename" placement="top">
  10. <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]" />
  11. </el-tooltip>
  12. </template>
  13. <template slot-scope="scope">
  14. <span v-if="!colItem.backgroundcolorexpression">{{ scope.row[colItem.pagecode] }}</span>
  15. <div v-else :class="isTrue(scope.row[colItem.pagecode],colItem.backgroundcolorexpression )"></div>
  16. </template>
  17. </el-table-column>
  18. <template #header>
  19. <el-tooltip :content="col.pagedescribe || col.pagename" placement="top">
  20. <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]" />
  21. </el-tooltip>
  22. </template>
  23. <template slot-scope="scope">
  24. <span v-if="!col.backgroundcolorexpression">{{ scope.row[col.pagecode] }}</span>
  25. <div v-else :class="isTrue(scope.row[col.pagecode],col.backgroundcolorexpression )"></div>
  26. </template>
  27. </el-table-column>
  28. <el-table-column v-if="dealedTableData.length && tableBtns.length" fixed="right" width="240" label="操作">
  29. <template slot-scope="scope">
  30. <div class="hd-td">
  31. <el-scrollbar style="height: 100%">
  32. <AuthButton v-for="(item,index) in tableBtns" :key="index" :auth="item" :row="scope.row" />
  33. </el-scrollbar>
  34. </div>
  35. </template>
  36. </el-table-column>
  37. </el-table>
  38. </div>
  39. </template>
  40. <script>
  41. import TableHeaderCell from '../TableHeaderCell'
  42. import AuthButton from '@/components/AuthButton'
  43. import { setTableFilters } from '@/utils/table'
  44. import { mapGetters } from 'vuex'
  45. export default {
  46. name: 'SimpleTable',
  47. components: { TableHeaderCell, AuthButton },
  48. props: {
  49. loading: {
  50. type: Boolean,
  51. default: false
  52. },
  53. height: {
  54. type: [String, Number],
  55. default: '100%'
  56. },
  57. tableCols: {
  58. type: Array,
  59. default: () => []
  60. },
  61. tableBtns: {
  62. type: Array,
  63. default: () => []
  64. },
  65. selectedDatas: {
  66. type: Array,
  67. default: () => []
  68. },
  69. selectedCheck: {
  70. type: Object,
  71. default: () => new Object()
  72. },
  73. data: {
  74. type: Array,
  75. default: () => []
  76. },
  77. headerCellClassName: {
  78. type: Function
  79. },
  80. rowClassName: {
  81. type: Function
  82. },
  83. cellClassName: {
  84. type: Function
  85. },
  86. spanMethod: {
  87. type: Function
  88. },
  89. // 是否显示合计行
  90. showSummary: {
  91. type: Boolean,
  92. default: false
  93. },
  94. summaryMethod: {
  95. type: Function
  96. },
  97. // 不换行,溢出隐藏
  98. showOverflowTooltip: {
  99. type: Boolean,
  100. default: true
  101. },
  102. formatter: {
  103. type: Function
  104. },
  105. selected: {
  106. type: Number,
  107. default: 0
  108. },
  109. fastFilter: {
  110. type: Function,
  111. default: () => () => true
  112. },
  113. },
  114. data () {
  115. return {
  116. tableData: [],
  117. tableDataFilters: {}, // 表头-下拉数据
  118. filterValues: {}, // 表头-下拉-选中数据
  119. tableDataSortRules: {}, // 表头-排序
  120. tableGroups: [], // 表格分组规则
  121. spanArr: [] // 表格分组数据缓存
  122. }
  123. },
  124. computed: {
  125. ...mapGetters(['clickedCells']),
  126. filteredTableCols () {
  127. return this.tableCols.filter(col => col.isdisplay != 0)
  128. },
  129. fastFilteredTableData () {
  130. return this.tableData.filter(this.fastFilter)
  131. },
  132. dealedTableData () {
  133. const filtered = this.fastFilteredTableData.filter(item => {
  134. let flag = true
  135. Object.entries(this.filterValues).forEach(([key, arr]) => {
  136. if (arr.length && !arr.includes(String(item[key]))) {
  137. flag = false
  138. }
  139. })
  140. return flag
  141. })
  142. const sortRules = Object.entries(this.tableDataSortRules).reduce(
  143. (pre, [key, value]) => {
  144. if (value) {
  145. pre[0].push(key)
  146. value = value === 'ascending' ? 'asc' : 'desc'
  147. pre[1].push(value)
  148. }
  149. return pre
  150. },
  151. [[], []]
  152. )
  153. return this._.orderBy(filtered, sortRules[0], sortRules[1])
  154. }
  155. },
  156. watch: {
  157. data: {
  158. handler (arr) {
  159. this.tableData = arr
  160. },
  161. deep: true
  162. },
  163. tableData: {
  164. handler () {
  165. this.setTableFilters()
  166. },
  167. deep: true
  168. },
  169. tableCols: {
  170. handler () {
  171. this.setTableFilters()
  172. },
  173. deep: true
  174. },
  175. selectedDatas: {
  176. handler (rows) {
  177. this.$refs.table.clearSelection()
  178. if (rows) {
  179. this.$nextTick(() => {
  180. rows.forEach(row => {
  181. this.$refs.table.toggleRowSelection(row)
  182. })
  183. })
  184. }
  185. },
  186. deep: true
  187. },
  188. dealedTableData: {
  189. handler (arr) {
  190. const spanArr = []
  191. let pos = 0
  192. arr.forEach((item, index, arr) => {
  193. if (index === 0) {
  194. spanArr.push(1)
  195. } else {
  196. if (this.tableGroups.every(prop => arr[index][prop] === arr[index - 1][prop])) {
  197. spanArr[pos] += 1
  198. spanArr.push(0)
  199. } else {
  200. spanArr.push(1)
  201. pos = index
  202. }
  203. }
  204. })
  205. this.spanArr = spanArr
  206. },
  207. deep: true
  208. },
  209. headerCellClassName: {
  210. handler (func) {
  211. if (func) {
  212. this.headerCellClass = func().bind(this)
  213. }
  214. },
  215. deep: true,
  216. immediate: true
  217. },
  218. rowClassName: {
  219. handler (func) {
  220. if (func) {
  221. this.rowClass = func().bind(this)
  222. }
  223. },
  224. deep: true,
  225. immediate: true
  226. },
  227. cellClassName: {
  228. handler (func) {
  229. if (func) {
  230. this.cellClass = func().bind(this)
  231. }
  232. },
  233. deep: true,
  234. immediate: true
  235. },
  236. spanMethod: {
  237. handler (func) {
  238. if (func) {
  239. this.tableSpanMethod = func().bind(this)
  240. }
  241. },
  242. deep: true,
  243. immediate: true
  244. },
  245. summaryMethod: {
  246. handler (func) {
  247. if (func) {
  248. this.tableSummaryMethod = func().bind(this)
  249. }
  250. },
  251. deep: true,
  252. immediate: true
  253. },
  254. formatter: {
  255. handler (func) {
  256. if (func) {
  257. this.tableFormatter = func().bind(this)
  258. }
  259. },
  260. deep: true,
  261. immediate: true
  262. }
  263. },
  264. mounted () {
  265. this.$emit('mounted', 'table', this.$refs['table'])
  266. },
  267. updated () {
  268. this.$refs['table']?.doLayout()
  269. },
  270. methods: {
  271. isTrue (row, data) {
  272. return eval(data)
  273. },
  274. load () {
  275. this.$emit('load')
  276. },
  277. headerCellClass ({ row, column, rowIndex, columnIndex }) {
  278. const classes = []
  279. const rule = this.tableDataSortRules[column.property]
  280. if (rule) {
  281. classes.push(rule)
  282. }
  283. return classes.join(' ')
  284. },
  285. rowClass () {
  286. return ''
  287. },
  288. cellClass () {
  289. return ''
  290. },
  291. tableSpanMethod ({ row, column, rowIndex, columnIndex }) {
  292. if (this.tableGroups.includes(column.property)) {
  293. const _row = this.spanArr[rowIndex]
  294. const _col = _row > 0 ? 1 : 0
  295. return {
  296. rowspan: _row,
  297. colspan: _col
  298. }
  299. }
  300. },
  301. tableSummaryMethod (param) {
  302. const { columns, data } = param
  303. const sums = []
  304. columns.forEach((column, index) => {
  305. this.tableCols.forEach(p => {
  306. if (column.property === p.pagecode && p.enablecount) {
  307. const values = data.map(item => Number(item[column.property]))
  308. if (!values.every(value => isNaN(value))) {
  309. sums[index] = values.reduce((prev, curr) => {
  310. const value = Number(curr)
  311. if (!isNaN(value)) {
  312. return prev + curr
  313. } else {
  314. return prev
  315. }
  316. }, 0)
  317. sums[index] += ''
  318. }
  319. }
  320. })
  321. })
  322. return sums
  323. },
  324. cellClickHandler (...params) {
  325. this.$emit('cell-click', ...params)
  326. },
  327. tableFormatter (row, column, cellValue) {
  328. return cellValue
  329. },
  330. setTableFilters () {
  331. this.tableDataFilters = {}
  332. this.filteredTableCols.forEach(col => {
  333. if (col.enablefilter) {
  334. this.tableDataFilters[col.pagecode] = []
  335. }
  336. if (col.enablegroup) {
  337. this.tableGroups.push(col.pagecode)
  338. }
  339. })
  340. setTableFilters(this.tableData, this.tableDataFilters)
  341. },
  342. //表格-查看
  343. handleDetail (row) {
  344. this.$emit('handleDetail', row)
  345. },
  346. //表格-编辑
  347. handleEdit (row) {
  348. this.$emit('handleEdit', row)
  349. },
  350. //表格-其他类型按钮操作
  351. handleOther (row, auth) {
  352. this.$emit('handleOther', row, auth)
  353. },
  354. //表格-删除
  355. handleRemove (row) {
  356. this.$emit('handleRemove', row)
  357. },
  358. //表格-勾选
  359. handleSelectionChange (val) {
  360. if (!Object.keys(this.selectedCheck).length) {
  361. this.$refs.table.clearSelection()
  362. this.$message.error('请选中容器后再操作')
  363. return
  364. }
  365. this.$emit('handleSelectionChange', val)
  366. }
  367. }
  368. }
  369. </script>
  370. <style lang="scss" scoped>
  371. .table-wrapper {
  372. width: 100%;
  373. height: 100%;
  374. ::v-deep .el-table {
  375. width: 100%;
  376. .cell {
  377. padding: 0;
  378. text-align: center;
  379. font-size: 14px;
  380. font-family: Helvetica, "Microsoft YaHei";
  381. letter-spacing: 0;
  382. .success {
  383. width: 15px;
  384. height: 15px;
  385. background: #0fc956;
  386. margin-left: calc(50% - 8px);
  387. }
  388. .error {
  389. width: 15px;
  390. height: 15px;
  391. background: #c92b0f;
  392. margin-left: calc(50% - 8px);
  393. }
  394. }
  395. .cell-click {
  396. cursor: pointer;
  397. color: #2d7cff;
  398. &.cell-clicked {
  399. color: purple;
  400. }
  401. }
  402. .el-table__header-wrapper {
  403. .cell {
  404. font-weight: bold;
  405. color: #101116;
  406. > .el-checkbox {
  407. display: none;
  408. }
  409. }
  410. }
  411. .hd-td {
  412. white-space: nowrap;
  413. width: 100%;
  414. padding: 0 10px;
  415. }
  416. }
  417. }
  418. .no-column {
  419. padding-top: 20px;
  420. background-color: #ffffff;
  421. color: #909399;
  422. text-align: center;
  423. font-size: 20px;
  424. font-family: Helvetica, "Microsoft YaHei";
  425. }
  426. </style>