operationTable.vue 11 KB

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