table-qc.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522
  1. <template>
  2. <table class="com-table">
  3. <thead>
  4. <tr>
  5. <th
  6. v-for="(col, index) of data.column"
  7. :key="index"
  8. :class="{ light: col.is_light }"
  9. :style="{ width: col.width }"
  10. @click="onSort(col)"
  11. >
  12. {{ col.name }}
  13. </th>
  14. </tr>
  15. </thead>
  16. <!-- <el-scrollbar> -->
  17. <tbody>
  18. <tr v-for="(row, index) of tableData" :key="index">
  19. <td
  20. v-for="(col, i) of data.column"
  21. :key="i"
  22. :style="{ width: col.width }"
  23. :class="{
  24. light: hoverRow == row || hoverCol == col,
  25. num: col.is_num,
  26. 'always-light': col.is_light || row.is_light,
  27. }"
  28. @mouseenter="hover(row, col)"
  29. @mouseleave="leave()"
  30. >
  31. <component
  32. :is="col.type ? col.type : 'div'"
  33. v-bind="col.props"
  34. v-html="template(col, row[col.field])"
  35. @click="onClick(col, row)"
  36. ></component>
  37. </td>
  38. </tr>
  39. </tbody>
  40. <!-- </el-scrollbar> -->
  41. <el-pagination
  42. class="mg-t-8"
  43. v-if="pageable"
  44. @current-change="handleCurrentChange"
  45. :current-page="currentPage4"
  46. :page-size="pageSize"
  47. layout="total, prev, pager, next, jumper"
  48. :total="data.total"
  49. ></el-pagination>
  50. <el-dialog
  51. :title="dialogTitle"
  52. v-model="dialogShow"
  53. width="70%"
  54. top="40px"
  55. custom-class="modal"
  56. :close-on-click-modal="true"
  57. >
  58. <div class="chart" id="chartDiv" height="500px"></div>
  59. </el-dialog>
  60. </table>
  61. </template>
  62. <script>
  63. import * as echarts from "echarts";
  64. export default {
  65. // 名称
  66. name: "ComTable",
  67. // 使用组件
  68. components: {},
  69. // 传入参数
  70. props: {
  71. data: Object,
  72. // hover 样式
  73. showHover: {
  74. type: Boolean,
  75. default: true,
  76. },
  77. // 列高亮
  78. showColHover: {
  79. type: Boolean,
  80. default: false,
  81. },
  82. canScroll: {
  83. type: Boolean,
  84. default: true,
  85. },
  86. pageSize: {
  87. type: Number,
  88. default: 0,
  89. },
  90. height: {
  91. type: String,
  92. default: "",
  93. },
  94. },
  95. // 自定义事件
  96. emits: {
  97. // 分页事件
  98. onPagging: null,
  99. },
  100. // 数据
  101. data() {
  102. let that = this;
  103. return {
  104. hoverRow: -1,
  105. hoverCol: -1,
  106. sortCol: "",
  107. sortType: "",
  108. currentPage: 1,
  109. dialogShow: false,
  110. dialogTitle: "",
  111. dialogData: {},
  112. myChart: null,
  113. };
  114. },
  115. computed: {
  116. tableData() {
  117. let that = this;
  118. if (this.sortCol == "") {
  119. return this.data.data;
  120. } else {
  121. let data = this.data.data;
  122. data.sort((a, b) => {
  123. let rev = 1;
  124. if (that.sortType == "ASC") rev = 1;
  125. else if (that.sortType == "DESC") rev = -1;
  126. if (a[that.sortCol] > b[that.sortCol]) return rev * 1;
  127. if (a[that.sortCol] < b[that.sortCol]) return rev * -1;
  128. return 0;
  129. });
  130. return data;
  131. }
  132. },
  133. pageable() {
  134. return this.pageSize != 0;
  135. },
  136. pages() {
  137. if (this.pageable) return parseInt(this.data.total / this.pageSize) + 1;
  138. else return 0;
  139. },
  140. startRow() {
  141. if (this.pageable) return (this.currentPage - 1) * this.pageSize;
  142. else return 0;
  143. },
  144. endRow() {
  145. if (this.pageable) return this.currentPage * this.pageSize;
  146. else return this.data.data.length;
  147. },
  148. },
  149. // 函数
  150. methods: {
  151. clearCheckBox(time) {
  152. this.$nextTick(() => {
  153. setTimeout(() => {
  154. const domArray = document.querySelectorAll(".curCheckBox");
  155. for (let i = 0; i < domArray.length; i++) {
  156. domArray[i].checked = false;
  157. }
  158. }, time || 300);
  159. });
  160. },
  161. onClick(col, row) {
  162. const curIndex = row.curIndex;
  163. this.clearChart();
  164. let subUrl = "";
  165. let data = {};
  166. let method = "GET";
  167. if ("deviationRate2" == col.field) {
  168. data.type = "sjbz";
  169. } else if ("deviationRate1" == col.field) {
  170. data.type = "sjzy";
  171. } else if ("deviationRate3" == col.field) {
  172. data.type = "zybz";
  173. } else if ("monthDeviationRate" == col.field) {
  174. data.type = "hb";
  175. } else if ("yearDeviationRate" == col.field) {
  176. data.type = "tb";
  177. } else if ("standardDeviationRate" == col.field) {
  178. data.type = "bg";
  179. } else {
  180. return 0;
  181. }
  182. if (curIndex) {
  183. if (data.type.length < 2) {
  184. subUrl = "/leaderboard/getCurvechatAjax";
  185. } else {
  186. subUrl = "/leaderboard/curvechatAjaxhb";
  187. }
  188. } else {
  189. if (data.type.length < 2) {
  190. subUrl = "/leaderboard/curveMonthchatAjax";
  191. } else {
  192. subUrl = "/leaderboard/curveMonthchatAjaxtb";
  193. }
  194. }
  195. this.dialogShow = true;
  196. this.dialogTitle = "曲线偏差率排行";
  197. if (curIndex) {
  198. data.recorddate = row.recordDate;
  199. } else {
  200. data.year = row.year;
  201. data.month = row.month;
  202. }
  203. data["wtId"] = row.windturbineId;
  204. let that = this;
  205. that.API.requestData({
  206. baseURL: process.env.VUE_APP_NEW_WISDOM,
  207. method,
  208. subUrl,
  209. data,
  210. success(res) {
  211. if (res.code === 200) {
  212. const linedata1 = [];
  213. const linedata2 = [];
  214. const names = [res.data.name1, res.data.name2];
  215. res.data.datas.forEach((item, index) => {
  216. linedata1.push(item["value2"]);
  217. linedata2.push(item["value3"]);
  218. });
  219. that.dialogShow = true;
  220. that.dialogTitle = "曲线偏差率排行";
  221. that.initChart(linedata1, linedata2, names);
  222. }
  223. },
  224. });
  225. },
  226. clearChart() {
  227. const chartDom = document.getElementById("chartDiv");
  228. chartDom && chartDom.removeAttribute("_echarts_instance_");
  229. },
  230. initChart(data1, data2, names) {
  231. let that = this;
  232. let myChart = echarts.init(document.getElementById("chartDiv"));
  233. let option = {
  234. color: ["#05bb4c", "#4b55ae"],
  235. tooltip: {
  236. trigger: "axis",
  237. },
  238. legend: {
  239. show: true,
  240. data: names,
  241. right: 56,
  242. icon: "circle",
  243. itemWidth: 6,
  244. inactiveColor: "#606769",
  245. textStyle: {
  246. color: "#B3BDC0",
  247. fontSize: 12,
  248. },
  249. },
  250. grid: {
  251. top: 32,
  252. left: 40,
  253. right: 40,
  254. bottom: 24,
  255. },
  256. xAxis: [
  257. {
  258. type: "category",
  259. boundaryGap: false,
  260. axisLabel: {
  261. formatter: "{value}",
  262. fontSize: 9.35925925925926,
  263. textStyle: {
  264. color: "#606769",
  265. },
  266. },
  267. axisLine: {
  268. show: false,
  269. },
  270. data: [
  271. "0",
  272. "1",
  273. "2",
  274. "3",
  275. "4",
  276. "5",
  277. "6",
  278. "7",
  279. "8",
  280. "9",
  281. "10",
  282. "11",
  283. "12",
  284. "13",
  285. "14",
  286. "15",
  287. "16",
  288. "17",
  289. "18",
  290. "19",
  291. "20",
  292. "21",
  293. "22",
  294. "23",
  295. "24",
  296. "25",
  297. ],
  298. },
  299. ],
  300. yAxis: [
  301. {
  302. type: "value",
  303. name: "(W)",
  304. axisLabel: {
  305. formatter: "{value}",
  306. fontSize: 9.35925925925926,
  307. },
  308. axisLine: {
  309. show: false,
  310. },
  311. splitLine: {
  312. show: true,
  313. lineStyle: {
  314. color: "#606769",
  315. type: "dashed",
  316. },
  317. },
  318. },
  319. ],
  320. series: [
  321. {
  322. name: names[0],
  323. type: "line",
  324. smooth: true,
  325. showSymbol: false,
  326. zlevel: 0,
  327. lineStyle: {
  328. normal: {
  329. color: "#05bb4c",
  330. width: 1,
  331. },
  332. emphasis: {
  333. color: "#05bb4c",
  334. },
  335. },
  336. areaStyle: {
  337. normal: {
  338. color: {
  339. colorStops: [
  340. {
  341. offset: 0,
  342. color: "rgba(5,187,76,0.3)",
  343. },
  344. {
  345. offset: 1,
  346. color: "rgba(5,187,76,0.1)",
  347. },
  348. ],
  349. x: 0,
  350. y: 0,
  351. x2: 0,
  352. y2: 1,
  353. type: "linear",
  354. global: false,
  355. },
  356. shadowColor: "rgba(5,187,76,0.1)",
  357. shadowBlur: 10,
  358. },
  359. emphasis: {
  360. color: {
  361. colorStops: [
  362. {
  363. offset: 0,
  364. color: "rgba(5,187,76,0.3)",
  365. },
  366. {
  367. offset: 1,
  368. color: "rgba(5,187,76,0.1)",
  369. },
  370. ],
  371. x: 0,
  372. y: 0,
  373. x2: 0,
  374. y2: 1,
  375. type: "linear",
  376. global: false,
  377. },
  378. shadowColor: "rgba(5,187,76,0.1)",
  379. shadowBlur: 10,
  380. },
  381. },
  382. yAxisIndex: 0,
  383. data: data1,
  384. },
  385. {
  386. name: names[1],
  387. type: "line",
  388. smooth: true,
  389. showSymbol: false,
  390. zlevel: 2,
  391. lineStyle: {
  392. normal: {
  393. color: "#606769",
  394. width: 1,
  395. },
  396. emphasis: {
  397. color: "#fa8c16",
  398. },
  399. },
  400. areaStyle: {
  401. normal: {
  402. color: "transparent",
  403. shadowColor: "rgba(250,140,22,0.1)",
  404. shadowBlur: 10,
  405. },
  406. emphasis: {
  407. color: {
  408. colorStops: [
  409. {
  410. offset: 0,
  411. color: "rgba(250,140,22,0.3)",
  412. },
  413. {
  414. offset: 1,
  415. color: "rgba(250,140,22,0.1)",
  416. },
  417. ],
  418. x: 0,
  419. y: 0,
  420. x2: 0,
  421. y2: 1,
  422. type: "linear",
  423. global: false,
  424. },
  425. shadowColor: "rgba(250,140,22,0.1)",
  426. shadowBlur: 10,
  427. },
  428. },
  429. yAxisIndex: 0,
  430. data: data2,
  431. },
  432. ],
  433. };
  434. myChart.clear();
  435. myChart.setOption(option);
  436. this.resize = function () {
  437. myChart.resize();
  438. };
  439. window.addEventListener("resize", this.resize);
  440. myChart.resize();
  441. },
  442. onSort(col) {
  443. if (col.sortable == true) {
  444. this.sortCol = col.field;
  445. switch (this.sortType) {
  446. case "":
  447. this.sortType = "DESC";
  448. break;
  449. case "DESC":
  450. this.sortType = "ASC";
  451. break;
  452. case "ASC":
  453. this.sortType = "";
  454. break;
  455. }
  456. }
  457. },
  458. template(col, data) {
  459. if (!col.template) return data;
  460. else return col.template(data);
  461. },
  462. hover(row, col) {
  463. if (this.showHover) {
  464. this.hoverRow = row;
  465. if (this.showColHover) this.hoverCol = col;
  466. }
  467. },
  468. leave() {
  469. this.hoverRow = -1;
  470. this.hoverCol = -1;
  471. },
  472. handleCurrentChange(val) {
  473. this.currentPage = val;
  474. this.$emit("onPagging", {
  475. pageIndex: this.currentPage,
  476. pageSize: this.pageSize,
  477. start: this.startRow,
  478. end: this.endRow,
  479. });
  480. },
  481. },
  482. // 生命周期钩子
  483. // 创建前
  484. beforeCreate() {},
  485. // 创建后
  486. created() {},
  487. // 渲染前
  488. beforeMount() {},
  489. // 渲染后
  490. mounted() {},
  491. beforeUpdate() {},
  492. updated() {},
  493. };
  494. </script>
  495. <style lang="less" scoped>
  496. .chart {
  497. width: 100%;
  498. height: 500px;
  499. }
  500. ::v-deep.com-table {
  501. height: calc(100% - 51px);
  502. thead {
  503. height: 24px;
  504. }
  505. tbody {
  506. height: calc(100% - 24px);
  507. overflow-y: auto;
  508. }
  509. }
  510. </style>