index.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. <script setup name="angleAnalysis">
  2. import searchCop from "./components/search.vue";
  3. import excelCop from "@/components/excel.vue";
  4. import treeCop from "@/components/tree.vue";
  5. import { ElMessage } from "element-plus";
  6. import {
  7. getWindBladeAngle,
  8. getPrepareTree,
  9. } from "@/api/powerGenerating/index.js";
  10. import { onMounted, ref, onActivated } from "vue";
  11. import CurrentScatterChart from "./components/current-scatter-chart.vue";
  12. import dayjs from "dayjs";
  13. /**excel 开始 */
  14. const excelList = ref([]);
  15. const funExcelChange = async (obj) => {
  16. //点击excel项时
  17. funSubmit({ ids: obj.id });
  18. };
  19. /**tree 开始 */
  20. const treeData = ref([]);
  21. const actTreeNode = ref(null); //当前激活的treeNode
  22. const funRepeatMap = (arr, type) => {
  23. return arr.map((o) => {
  24. if (o.children) {
  25. const findIndex = o.children.findIndex((p) => !!p.type);
  26. if (findIndex !== -1) {
  27. o.childs = o.children;
  28. o.children = [];
  29. if (!actTreeNode.value && type === "prepare") {
  30. //判断当且仅有process获取tree时 赋值
  31. actTreeNode.value = o;
  32. }
  33. }
  34. }
  35. return {
  36. ...o,
  37. children: o.children?.length ? funRepeatMap(o.children, type) : [],
  38. };
  39. });
  40. };
  41. const funGetTree = async () => {
  42. const res = await getPrepareTree();
  43. treeData.value = funRepeatMap(res.data, "prepare");
  44. excelList.value = [];
  45. if (actTreeNode.value) {
  46. funCurrentChange({ current: actTreeNode.value, currentNode: null });
  47. const child = actTreeNode.value.childs[0];
  48. const obj = {
  49. id: child.id,
  50. interval: child.interval,
  51. path: child.path,
  52. prepareid: child.prepareid,
  53. station: child.station,
  54. time: child.time,
  55. type: child.type,
  56. windturbine: child.windturbine,
  57. name: child.path.substring(
  58. child.path.indexOf(child.station + "_") + (child.station + "_").length
  59. ),
  60. };
  61. funExcelChange(obj);
  62. }
  63. };
  64. const funCurrentChange = ({ current, currentNode }) => {
  65. if (current.childs) {
  66. excelList.value = current.childs.map((o) => {
  67. return {
  68. id: o.id,
  69. interval: o.interval,
  70. path: o.path,
  71. prepareid: o.prepareid,
  72. station: o.station,
  73. time: o.time,
  74. type: o.type,
  75. windturbine: o.windturbine,
  76. name: o.path.substring(
  77. o.path.indexOf(o.station + "_") + (o.station + "_").length
  78. ),
  79. };
  80. });
  81. } else {
  82. excelList.value = [];
  83. }
  84. };
  85. /**table 开始 */
  86. const tableShowId = ref("");
  87. const tableName = ref("");
  88. const tableColumn = ref([]);
  89. const tableLoading = ref(false);
  90. const tableData = ref([]);
  91. /**tab */
  92. const activeTab = ref("1");
  93. /**chart Data */
  94. const xAxisData = ref([]);
  95. const chartRef = ref(); //chart 的ref
  96. const seriesData = ref([]);
  97. const dataSet = ref("");
  98. const funChartSelect = async (batch) => {
  99. return false;
  100. };
  101. /**submit */
  102. const funSubmit = async (params) => {
  103. const res = await getWindBladeAngle(params);
  104. if (res.code !== 200) {
  105. return false;
  106. }
  107. let exTime = [];
  108. let yp1 = [],
  109. yp2 = [];
  110. res.data.bw.forEach((it) => {
  111. exTime.push(it.time);
  112. yp1.push(it.value);
  113. });
  114. res.data.tj.forEach((it) => {
  115. yp2.push(it.value);
  116. });
  117. xAxisData.value = exTime;
  118. //const tsArr = res.data.time
  119. //let yp1 = [], yp2 = [], yp3 = []
  120. //res.data.angle.forEach(val => {
  121. // yp1 = val.yp1
  122. // yp2 = val.yp2
  123. // yp3 = val.yp3
  124. //});
  125. //xAxisData.value = tsArr
  126. // seriesData.value = [
  127. // {
  128. // name: "叶片一",
  129. // type: "line",
  130. // symbol: "line", //设定为实心点
  131. // symbolSize: 0, //设定实心点的大小
  132. // smooth: false, //这个是把线变成曲线
  133. // data: yp1,
  134. // xAxisIndex: 0,
  135. // },
  136. // {
  137. // name: "叶片二",
  138. // type: "line",
  139. // symbol: "line", //设定为实心点
  140. // symbolSize: 0, //设定实心点的大小
  141. // smooth: false, //这个是把线变成曲线
  142. // data: yp2,
  143. // xAxisIndex: 0,
  144. // },
  145. // {
  146. // name: "叶片三",
  147. // type: "line",
  148. // symbol: "line", //设定为实心点
  149. // symbolSize: 0, //设定实心点的大小
  150. // smooth: false, //这个是把线变成曲线
  151. // data: yp3,
  152. // xAxisIndex: 0,
  153. // },
  154. // ]
  155. seriesData.value = [
  156. {
  157. name: "并网",
  158. type: "line",
  159. symbol: "line", //设定为实心点
  160. symbolSize: 0, //设定实心点的大小
  161. smooth: false, //这个是把线变成曲线
  162. data: yp1,
  163. xAxisIndex: 0,
  164. },
  165. {
  166. name: "停机",
  167. type: "line",
  168. symbol: "line", //设定为实心点
  169. symbolSize: 0, //设定实心点的大小
  170. smooth: false, //这个是把线变成曲线
  171. data: yp2,
  172. xAxisIndex: 0,
  173. },
  174. ];
  175. };
  176. /**created */
  177. funGetTree()
  178. /**mounted */
  179. /**activated */
  180. onActivated(() => {
  181. funGetTree();
  182. // funSubmit()
  183. });
  184. </script>
  185. <template>
  186. <div class="container-wrapper">
  187. <div class="power-data-wrapper card-shadow wrapper">
  188. <div class="card-title">数据展示</div>
  189. <div class="data-wrapper">
  190. <tree-cop
  191. :data="treeData"
  192. @currentChange="funCurrentChange"
  193. @refresh="funGetTree"
  194. />
  195. <excel-cop :data="excelList" @excelChange="funExcelChange" />
  196. <div class="data-table-wrapper card-shadow">
  197. <div class="data-table-chart">
  198. <CurrentScatterChart
  199. ref="chartRef"
  200. width="100%"
  201. :height="`calc( ${tableHeight})`"
  202. :chartTitle="''"
  203. :xAxisData="xAxisData"
  204. :yAxisData="{ splitLine: { show: false } }"
  205. :seriesData="seriesData"
  206. :showLegend="true"
  207. :brushSelected="false"
  208. :dataSet="dataSet"
  209. @getSelected="funChartSelect"
  210. />
  211. </div>
  212. </div>
  213. </div>
  214. </div>
  215. </div>
  216. </template>
  217. <style lang="less" scoped>
  218. .power-data-wrapper {
  219. height: 100%;
  220. margin-top: 0;
  221. }
  222. .data-table-wrapper {
  223. width: calc(62% - 40px) !important;
  224. }
  225. </style>