rank-table.vue 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  1. <template>
  2. <table class="com-table rank-table">
  3. <thead>
  4. <tr>
  5. <!-- <th>排名</th> -->
  6. <th v-for="(col, index) of data.column" :key="index" :class="{ light: col.is_light }"
  7. :style="{ width: col.width, height: '4vh' }" @click="onSort(col)">
  8. {{ col.name }}
  9. </th>
  10. </tr>
  11. </thead>
  12. <el-scrollbar>
  13. <tbody :style="{ height: height }">
  14. <tr v-for="(row, index) of tableData" :key="index" class="rank" :class="rankSty(row)"
  15. @click="clickRow(row)">
  16. <!-- <td class="rank-index">
  17. <span>{{ index + 1 }}</span>
  18. </td> -->
  19. <td v-for="(col, i) of data.column" :key="i" :style="{ width: col.width }" :class="{
  20. light: hoverRow == row || hoverCol == col,
  21. num: col.is_num,
  22. 'always-light': col.is_light || row.is_light,
  23. }" @mouseleave="leave()">
  24. <component :is="col.type ? col.type : 'span'" v-bind="col.props"
  25. v-html="template(col, row[col.field])" @click="onClick(col, row)">
  26. </component>
  27. </td>
  28. </tr>
  29. </tbody>
  30. </el-scrollbar>
  31. <el-pagination class="mg-t-8" v-if="pageable" @current-change="handleCurrentChange" :current-page="currentPage"
  32. :page-size="pageSize" :total="data.total" v-bind="elPaggingProps">
  33. </el-pagination>
  34. </table>
  35. </template>
  36. <script>
  37. export default {
  38. // 名称
  39. name: "ComTable",
  40. // 使用组件
  41. components: {},
  42. // 传入参数
  43. props: {
  44. /**
  45. * {
  46. column: [{
  47. name: "风机名称",
  48. field: "name",
  49. type:'div',
  50. width:'', // 宽度
  51. is_num: false, // 是否为数字
  52. is_light: false, // 是否高亮
  53. template:function(){ }
  54. click:function(){} //点击事件
  55. sortable:fasle // 排序
  56. // 新增用于在表格中使用动态三方组件
  57. type:'el-tag', // * 新增 用于传入三方组件名称 实现三方组件引入 component :is 方式实现
  58. props:{}, // * 新增 用户传入三方组件的 props 与type同时使用
  59. },{
  60. name: "冷却风温度",
  61. field: "lqf",
  62. is_num: true,
  63. is_light: false
  64. }],
  65. data: [{
  66. name: "1E01",
  67. lqf: 15.78,
  68. is_light: false
  69. }],
  70. total:200
  71. }
  72. */
  73. data: Object,
  74. // hover 样式
  75. showHover: {
  76. type: Boolean,
  77. default: true,
  78. },
  79. // 列高亮
  80. showColHover: {
  81. type: Boolean,
  82. default: false,
  83. },
  84. canScroll: {
  85. type: Boolean,
  86. default: true,
  87. },
  88. pageSize: {
  89. type: Number,
  90. default: 0,
  91. },
  92. height: {
  93. type: String,
  94. default: "",
  95. },
  96. // 新增 支持 pagging 组件
  97. elPaggingProps: {
  98. type: Object,
  99. default: () => {
  100. return {
  101. layout: "total, sizes, prev, pager, next, jumper",
  102. // "page-sizes": [100, 200, 300, 400],
  103. };
  104. },
  105. },
  106. },
  107. // 自定义事件
  108. emits: {
  109. // 分页事件
  110. onPagging: null,
  111. },
  112. // 数据
  113. data() {
  114. return {
  115. hoverRow: -1,
  116. hoverCol: -1,
  117. sortCol: "",
  118. sortType: "",
  119. currentPage: 1,
  120. };
  121. },
  122. computed: {
  123. tableData() {
  124. let that = this;
  125. if (this.sortCol == "") {
  126. return this.data.data;
  127. } else {
  128. let data = this.data.data;
  129. data.sort((a, b) => {
  130. let rev = 1;
  131. if (that.sortType == "ASC") rev = 1;
  132. else if (that.sortType == "DESC") rev = -1;
  133. if (a[that.sortCol] > b[that.sortCol]) return rev * 1;
  134. if (a[that.sortCol] < b[that.sortCol]) return rev * -1;
  135. return 0;
  136. });
  137. return data;
  138. }
  139. },
  140. pageable() {
  141. return this.pageSize != 0;
  142. },
  143. pages() {
  144. if (this.pageable) return parseInt(this.data.total / this.pageSize) + 1;
  145. else return 0;
  146. },
  147. startRow() {
  148. if (this.pageable) return (this.currentPage - 1) * this.pageSize;
  149. else return 0;
  150. },
  151. endRow() {
  152. if (this.pageable) return this.currentPage * this.pageSize;
  153. else return this.data.data.length;
  154. },
  155. },
  156. // 函数
  157. methods: {
  158. rankSty(row) {
  159. if (row.operation === '不可运行') {
  160. return 'rank0'
  161. }
  162. },
  163. clickRow(row) {
  164. this.$emit("rowClick", row);
  165. },
  166. onClick(col, data) {
  167. if (col.click) col.click(event, data);
  168. },
  169. onSort(col) {
  170. if (col.sortable == true) {
  171. this.sortCol = col.field;
  172. switch (this.sortType) {
  173. case "":
  174. this.sortType = "DESC";
  175. break;
  176. case "DESC":
  177. this.sortType = "ASC";
  178. break;
  179. case "ASC":
  180. this.sortType = "";
  181. break;
  182. }
  183. }
  184. },
  185. template(col, data) {
  186. if (!col.template) return data;
  187. else return col.template(data);
  188. },
  189. hover(row, col) {
  190. if (this.showHover) {
  191. this.hoverRow = row;
  192. if (this.showColHover) this.hoverCol = col;
  193. }
  194. },
  195. leave() {
  196. this.hoverRow = -1;
  197. this.hoverCol = -1;
  198. },
  199. handleCurrentChange(val) {
  200. this.currentPage = val;
  201. this.$emit("onPagging", {
  202. pageIndex: this.currentPage,
  203. pageSize: this.pageSize,
  204. start: this.startRow,
  205. end: this.endRow,
  206. });
  207. },
  208. },
  209. // 生命周期钩子
  210. beforeCreate() {
  211. // 创建前
  212. },
  213. created() {
  214. // 创建后
  215. },
  216. beforeMount() {
  217. // 渲染前
  218. },
  219. mounted() {
  220. // 渲染后
  221. },
  222. beforeUpdate() {},
  223. updated() {},
  224. };
  225. </script>
  226. <style lang="less">
  227. .rank-table {
  228. thead tr th {
  229. color: #ffffff;
  230. }
  231. .rank {
  232. background: transparent !important;
  233. border-bottom: 1px solid #5362684d;
  234. cursor: pointer;
  235. td {
  236. height: 4.5vh;
  237. line-height: 4.5vh;
  238. padding: 0;
  239. color: #ffffff;
  240. &.rank-index {
  241. span {
  242. width: 1.852vh;
  243. height: 1.852vh;
  244. display: flex;
  245. margin: 0.37vh auto;
  246. background: #414e64;
  247. align-items: center;
  248. justify-content: center;
  249. }
  250. }
  251. }
  252. }
  253. .rank.rank0 td {
  254. color: #ffa025;
  255. &.rank-index span {
  256. background: #ffa025;
  257. color: #ffffff;
  258. }
  259. }
  260. // .rank.rank1 td {
  261. // color: #05bb4c;
  262. // &.rank-index span {
  263. // background: #05bb4c;
  264. // color: #ffffff;
  265. // }
  266. // }
  267. // .rank.rank2 td {
  268. // color: #4b55ae;
  269. // &.rank-index span {
  270. // background: #4b55ae;
  271. // color: #ffffff;
  272. // }
  273. // }
  274. }
  275. </style>