power-review.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. <template>
  2. <div class="power-review">
  3. <Row type="flex" justify="center" :align="'middle'">
  4. <!-- 功率复核 PowerLoad -->
  5. <Col v-for="item in PowerLoad" :key="item" :span="6">
  6. <dash-pie-chart
  7. :title="item.title"
  8. :value="item.value"
  9. :max="item.max"
  10. height="10vh"
  11. @click="
  12. openDialog(
  13. item.dialogTitle,
  14. item.subUrl,
  15. item.targetName,
  16. item.dialogType
  17. )
  18. "
  19. />
  20. </Col>
  21. </Row>
  22. </div>
  23. </template>
  24. <script>
  25. import Col from "@/components/coms/grid/col.vue";
  26. import Row from "../../../components/coms/grid/row.vue";
  27. import DashPieChart from "../../../components/chart/pie/dash-pie-chart.vue";
  28. export default {
  29. components: {
  30. Row,
  31. Col,
  32. DashPieChart,
  33. },
  34. data() {
  35. return {
  36. // 功率复核数据
  37. PowerLoad: [],
  38. wpId: "",
  39. };
  40. },
  41. props: {
  42. data: {
  43. type: Array,
  44. default: () => [],
  45. },
  46. id: {
  47. type: String,
  48. defaylt: "",
  49. },
  50. },
  51. mounted() {
  52. this.PowerLoad = this.data;
  53. this.wpId = this.id;
  54. },
  55. methods: {
  56. openDialog(dialogTitle, subUrl, targetName, dialogType) {
  57. let that = this;
  58. that.API.requestData({
  59. method: "POST",
  60. subUrl,
  61. data: {
  62. id: that.wpId,
  63. targetName,
  64. },
  65. success(res) {
  66. let powerLineChartData = {
  67. // 图表所用单位
  68. units: [""],
  69. value: [],
  70. };
  71. res.data.forEach((pEle, pIndex) => {
  72. powerLineChartData.value.push({
  73. title: pEle[0].name,
  74. yAxisIndex: 0,
  75. smooth: true,
  76. value: [],
  77. });
  78. pEle.forEach((cEle) => {
  79. powerLineChartData.value[pIndex].value.push({
  80. text: new Date(cEle.time).formatDate("hh:mm:ss"),
  81. value: cEle.value1,
  82. });
  83. });
  84. });
  85. // let powerLineChartData = [];
  86. // res.data.forEach((pEle, pIndex) => {
  87. // powerLineChartData.push({
  88. // title: pEle[0].name,
  89. // smooth: true,
  90. // value: [],
  91. // });
  92. // pEle.forEach((cEle) => {
  93. // powerLineChartData[pIndex].value.push({
  94. // text: new Date(cEle.time).formatDate("hh:mm:ss"),
  95. // value: cEle.value1,
  96. // });
  97. // });
  98. // });
  99. that.$emit("chartClick", {
  100. dialogTitle,
  101. dialogType,
  102. data: powerLineChartData,
  103. });
  104. },
  105. });
  106. },
  107. },
  108. watch: {
  109. data(res) {
  110. this.PowerLoad = res;
  111. },
  112. id(res) {
  113. this.wpId = res;
  114. },
  115. },
  116. };
  117. </script>
  118. <style lang="less" scoped>
  119. .power-review {
  120. padding: 0;
  121. }
  122. .col + .col {
  123. margin-left: 0px;
  124. }
  125. </style>