MalfunctionWarning.vue 32 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114
  1. <template>
  2. <div class="decision-page-1">
  3. <div class="query mg-b-8">
  4. <div class="query-items">
  5. <div class="query-item">
  6. <div class="lable">算法类型:</div>
  7. <div class="search-input">
  8. <el-select
  9. v-model="chooseAlgorithm"
  10. @change="algorithmChange(chooseAlgorithm)"
  11. clearable
  12. placeholder="请选择"
  13. popper-class="select"
  14. @clear="clear()"
  15. >
  16. <el-option
  17. v-for="item in algorithm"
  18. :key="item.name"
  19. :value="item.name"
  20. :label="item.name"
  21. >
  22. </el-option>
  23. </el-select>
  24. </div>
  25. </div>
  26. <div v-for="(item, index) in chooseAlgorithm.parameters" :key="index">
  27. {{ item.name }}:
  28. <input
  29. v-model="item.value"
  30. type="number"
  31. @focus="inputChange(item)"
  32. @blur="inputChange(item)"
  33. />
  34. </div>
  35. </div>
  36. </div>
  37. <div class="actions mg-b-8">
  38. <button class="btn" @click="TypeClick('sjfl')">数据分类</button>
  39. <button class="btn" @click="TypeClick('xljl')">模型记录</button>
  40. <button class="btn" @click="TypeClick('mxcc')">模型存储</button>
  41. </div>
  42. <el-row :type="'flex'" class="content">
  43. <el-col :span="16" class="pd-l-8">
  44. <panel :title="'训练记录'" :showLine="false">
  45. <div class="dataTitle">
  46. <div class="chooses">
  47. <el-date-picker
  48. class="picker"
  49. @change="changes"
  50. v-model="timeValue"
  51. type="datetimerange"
  52. range-separator="至"
  53. start-placeholder="开始日期"
  54. end-placeholder="结束日期"
  55. >
  56. </el-date-picker>
  57. <div class="contents">
  58. 风电场:
  59. <el-select
  60. v-model="selectValue"
  61. @change="search()"
  62. clearable
  63. placeholder="请选择"
  64. popper-class="select"
  65. style="width: 170px; margin-left: 20px"
  66. >
  67. <el-option
  68. v-for="item in options"
  69. :key="item.value"
  70. :value="item.value"
  71. :label="item.label"
  72. />
  73. </el-select>
  74. </div>
  75. <div class="contents">
  76. 机型:
  77. <el-select
  78. v-model="selectMoudle"
  79. @change="selectSearch()"
  80. clearable
  81. placeholder="全部"
  82. popper-class="select"
  83. style="width: 120px; margin-left: 20px"
  84. >
  85. <el-option
  86. v-for="item in moudleList"
  87. :key="item.value"
  88. :value="item.value"
  89. :label="item.label"
  90. />
  91. </el-select>
  92. </div>
  93. </div>
  94. <div class="buts">
  95. <button class="btn" @click="searchData()">查询</button>
  96. <button class="btn" @click="batchDeal()">批量处理</button>
  97. </div>
  98. </div>
  99. <el-table
  100. height="75vh"
  101. ref="multipleTable"
  102. empty-text="暂无数据"
  103. :data="dataList"
  104. :header-cell-style="{
  105. height: '40px',
  106. background: 'rgba(83, 98, 104, 0.2)',
  107. color: '#b2bdc0',
  108. 'border-bottom': '0px solid red',
  109. }"
  110. :cell-style="{
  111. height: '40px',
  112. 'border-bottom': 'solid 0px #242424',
  113. }"
  114. stripe
  115. style="width: 100%; margin-bottom: 10px"
  116. >
  117. <el-table-column
  118. prop="idString"
  119. label="id"
  120. width="100"
  121. align="center"
  122. ></el-table-column>
  123. <el-table-column
  124. prop="faultTime"
  125. label="故障时间"
  126. width="180"
  127. align="center"
  128. ></el-table-column>
  129. <el-table-column
  130. prop="stationId"
  131. label="场站编号"
  132. width="120"
  133. align="center"
  134. ></el-table-column>
  135. <el-table-column
  136. prop="stationName"
  137. label="场站名称"
  138. width="150"
  139. align="center"
  140. ></el-table-column>
  141. <el-table-column
  142. prop="objectId"
  143. label="风机编号"
  144. width="120"
  145. align="center"
  146. ></el-table-column>
  147. <el-table-column
  148. prop="modelId"
  149. label="风机型号"
  150. width="120"
  151. align="center"
  152. ></el-table-column>
  153. <el-table-column
  154. prop="messageType"
  155. label="故障状态"
  156. width="100"
  157. align="center"
  158. ></el-table-column>
  159. <el-table-column
  160. prop="category1"
  161. label="类别"
  162. width="80"
  163. align="center"
  164. ></el-table-column>
  165. <el-table-column
  166. show-overflow-tooltip
  167. prop="alertText"
  168. label="故障内容"
  169. width="100"
  170. align="center"
  171. ></el-table-column>
  172. <el-table-column width="170" label="故障标签">
  173. <template #default="scope">
  174. <span>
  175. <el-select
  176. v-model="scope.row.labels"
  177. @change="selectChange(scope.row)"
  178. clearable
  179. placeholder="请选择"
  180. popper-class="select"
  181. style="width: 130px; margin-left: 30px"
  182. >
  183. <el-option
  184. v-for="item in faultLists"
  185. :key="item.faultcode"
  186. :label="item.faulttype"
  187. :value="item.faultcode"
  188. >
  189. </el-option>
  190. </el-select>
  191. </span>
  192. </template>
  193. </el-table-column>
  194. </el-table>
  195. </panel>
  196. </el-col>
  197. <el-col :span="8" class="pd-l-8">
  198. <panel :title="'演示过程图'" :showLine="false">
  199. <!-- <div class="records" v-if="recordList.length > 0">
  200. <el-select
  201. class="selectt"
  202. v-model="recordValue"
  203. @change="search()"
  204. clearable
  205. placeholder="请选择"
  206. popper-class="select"
  207. style="width: 130px; margin-left: 20px"
  208. >
  209. <el-option
  210. v-for="item in recordList"
  211. :key="item.names"
  212. :value="item.names"
  213. :label="item.names"
  214. />
  215. </el-select>
  216. 故障诊断模型:
  217. </div> -->
  218. <div
  219. class="scatterEcharts"
  220. id="scatter"
  221. @click="recordResults(storageList)"
  222. ></div>
  223. <div class="results" v-if="showTraining">
  224. <div class="progressTitle">
  225. <div v-if="!trainingFlag">数据获取中...</div>
  226. <div v-if="trainingFlag && width < 100">训练中...</div>
  227. <div v-if="trainingFlag && width === 100.0">训练完成</div>
  228. <div class="progressNum">
  229. 当前进度:{{ width >= 0 ? width : 0 }}%
  230. </div>
  231. </div>
  232. <div class="box">
  233. <div class="progress" :style="`width:${width}%;`"></div>
  234. <div class="line"></div>
  235. <div class="unprogress" :style="`width:${100 - width}%;`"></div>
  236. </div>
  237. </div>
  238. </panel>
  239. </el-col>
  240. </el-row>
  241. <DataClassify
  242. ref="dataClass"
  243. @click-training="handleTraining"
  244. @handleInterval="intervals"
  245. v-model="display"
  246. :allData="dataList"
  247. :chooseAlgorithm="chooseAlgorithm"
  248. ></DataClassify>
  249. <TrainingResults
  250. v-model="resultsDisplay"
  251. :allData="showList"
  252. :intervalValue="intervalValue"
  253. :moudleList="faultLists"
  254. @save-date="saveData"
  255. ></TrainingResults>
  256. <Records @results="recordResults" v-model="recordsDisplay"></Records>
  257. <BatchData
  258. v-model="batchDisplay"
  259. :moudleList="faultLists"
  260. :allData="dataList"
  261. @handleSave="saveData"
  262. ></BatchData>
  263. </div>
  264. </template>
  265. <script>
  266. import Panel from "../../components/coms/panel/panel.vue";
  267. import DataClassify from "./components/dataClassify.vue";
  268. import TrainingResults from "./components/trainingResults.vue";
  269. import Records from "./components/records.vue";
  270. import BatchData from "./components/batchData.vue";
  271. import partten from "@/helper/partten.js";
  272. import * as echarts from "echarts";
  273. import axios from "axios";
  274. export default {
  275. components: {
  276. Panel,
  277. partten,
  278. DataClassify,
  279. TrainingResults,
  280. Records,
  281. BatchData,
  282. },
  283. data() {
  284. return {
  285. faultLists: [],
  286. showTraining: false,
  287. trainingFlag: false,
  288. recordsDisplay: false,
  289. batchDisplay: false,
  290. width: 60,
  291. recordValue: "",
  292. // recordList: [],
  293. monitoringList: [],
  294. algorithm: [], //算法
  295. display: false,
  296. resultsDisplay: false,
  297. timeValue: [],
  298. showList: [],
  299. storageList: [],
  300. chooseAlgorithm: {},
  301. selectValue: "NSS_FDC",
  302. selectMoudle: "UP82",
  303. intervalValue: 1,
  304. timeList: [
  305. { value: "1小时" },
  306. { value: "1.5小时" },
  307. { value: "2小时" },
  308. { value: "2.5小时" },
  309. { value: "3小时" },
  310. { value: "3.5小时" },
  311. { value: "4小时" },
  312. { value: "4.5小时" },
  313. { value: "5小时" },
  314. { value: "5.5小时" },
  315. { value: "6小时" },
  316. { value: "6.5小时" },
  317. { value: "7小时" },
  318. { value: "7.5小时" },
  319. { value: "8小时" },
  320. { value: "8.5小时" },
  321. { value: "9小时" },
  322. { value: "9.5小时" },
  323. { value: "10小时" },
  324. { value: "10.5小时" },
  325. { value: "11小时" },
  326. { value: "11.5小时" },
  327. { value: "12小时" },
  328. ],
  329. options: [
  330. {
  331. value: "NSS_FDC",
  332. label: "牛首山风电场",
  333. station: [
  334. {
  335. lable: "UP82",
  336. value: "UP82",
  337. },
  338. ],
  339. },
  340. {
  341. value: "MHS_FDC",
  342. label: "麻黄山风电场",
  343. station: [
  344. {
  345. lable: "UP77",
  346. value: "UP77",
  347. },
  348. {
  349. lable: "UP105-2000-S",
  350. value: "UP105-2000-S",
  351. },
  352. ],
  353. },
  354. {
  355. value: "QS_FDC",
  356. label: "青山风电场",
  357. station: [
  358. {
  359. lable: "CCWE-1500",
  360. value: "CCWE-1500",
  361. },
  362. {
  363. lable: "UP105-2000-S",
  364. value: "UP105-2000-S",
  365. },
  366. ],
  367. },
  368. {
  369. value: "SBQ_FDC",
  370. label: "石板泉风电场",
  371. station: [
  372. {
  373. lable: "UP82",
  374. value: "UP82",
  375. },
  376. {
  377. lable: "UP97",
  378. value: "UP97",
  379. },
  380. {
  381. lable: "UP105-2000-S",
  382. value: "UP105-2000-S",
  383. },
  384. ],
  385. },
  386. {
  387. value: "XS_FDC",
  388. label: "香山风电场",
  389. station: [
  390. {
  391. lable: "UP97",
  392. value: "UP97",
  393. },
  394. {
  395. lable: "UP105-2000-S",
  396. value: "UP105-2000-S",
  397. },
  398. ],
  399. },
  400. ],
  401. moudleList: [],
  402. dataList: [],
  403. allData: [],
  404. resultList: [],
  405. series: [
  406. {
  407. name: "",
  408. symbolSize: 10,
  409. encode: { tooltip: [0, 1] },
  410. itemStyle: {
  411. color: "#ffffff",
  412. },
  413. data: [
  414. [11.0, 8.04],
  415. [8.07, 6.95],
  416. [13.0, 7.58],
  417. [9.05, 8.81],
  418. [11.0, 8.33],
  419. [14.0, 7.66],
  420. [13.4, 6.81],
  421. [10.0, 6.33],
  422. [14.0, 8.96],
  423. [12.5, 6.82],
  424. [9.15, 7.2],
  425. [11.5, 7.2],
  426. [3.03, 4.23],
  427. [12.2, 7.83],
  428. [2.02, 4.47],
  429. [1.05, 3.33],
  430. [4.05, 4.96],
  431. [6.03, 7.24],
  432. [12.0, 6.26],
  433. [12.0, 8.84],
  434. [7.08, 5.82],
  435. [5.02, 5.68],
  436. ],
  437. type: "scatter",
  438. },
  439. {
  440. name: "",
  441. encode: { tooltip: [0, 1] },
  442. symbolSize: 10,
  443. itemStyle: {
  444. color: "#FF0000",
  445. },
  446. data: [
  447. [1.0, 8.04],
  448. [18.07, 6.95],
  449. [3.0, 7.58],
  450. [19.05, 8.81],
  451. [1.0, 8.33],
  452. [4.0, 7.66],
  453. [3.4, 6.81],
  454. [20.0, 6.33],
  455. [4.0, 8.96],
  456. [2.5, 6.82],
  457. [19.15, 7.2],
  458. [11.5, 7.2],
  459. [3.03, 4.23],
  460. [12.2, 7.83],
  461. [2.02, 4.47],
  462. [1.05, 3.33],
  463. [4.05, 4.96],
  464. [6.03, 7.24],
  465. [12.0, 6.26],
  466. [12.0, 8.84],
  467. [7.08, 5.82],
  468. [5.02, 5.68],
  469. ],
  470. type: "scatter",
  471. },
  472. ],
  473. colors: [
  474. "#FFFFFF",
  475. "#FF0000",
  476. "#820041",
  477. "#FF00FF",
  478. "#8600FF",
  479. "#0000C6",
  480. "#00FFFF",
  481. "#00DB00",
  482. "#F9F900",
  483. "#FF5809",
  484. "#984B4B",
  485. "#AFAF61",
  486. "#5151A2",
  487. "#FFAF60",
  488. "#B766AD",
  489. "#006030",
  490. "#2894FF",
  491. "#796400",
  492. ],
  493. };
  494. },
  495. created() {
  496. // this.storageList = JSON.parse(
  497. // '[{"id":367361,"faultTime":"2021-10-22 10:46:09","messageType":1,"snapID":3744,"confirmType":0,"confirmTime":null,"confirmPerson":null,"stationId":"NSS_FDC","projectId":"NSS01_GC","lineId":"NSS02_XL","windturbineId":"NG01_13","alertValue":0,"rank":"5","category1":"FJ","category2":"GZ","category3":"TJ","lastUpdateTime":"2021-10-22 12:29:56","lastUpdatePerson":"system","stationName":"牛首山风电场","projectName":null,"lineName":null,"windturbineName":"牛首山13号风机","alertText":"总故障","modelId":"UP82","objectName":"牛首山风电场","messageTypeString":"触发","objectId":"NG01_13","opened":false,"categoryName":"风机","colors":"#FFFFFF"},{"id":366763,"faultTime":"2021-10-21 16:14:59","messageType":1,"snapID":27513,"confirmType":0,"confirmTime":null,"confirmPerson":null,"stationId":"NSS_FDC","projectId":"NSS01_GC","lineId":"NSS02_XL","windturbineId":"NG01_15","alertValue":0,"rank":"5","category1":"FJ","category2":"GZ","category3":"TJ","lastUpdateTime":"2021-10-26 08:14:33","lastUpdatePerson":"system","stationName":"牛首山风电场","projectName":null,"lineName":null,"windturbineName":"牛首山15号风机","alertText":"总故障","modelId":"UP82","objectName":"牛首山风电场","messageTypeString":"触发","objectId":"NG01_15","opened":false,"categoryName":"风机","colors":"#FFFFFF"},{"id":366005,"faultTime":"2021-10-21 12:52:56","messageType":1,"snapID":36067,"confirmType":0,"confirmTime":null,"confirmPerson":null,"stationId":"NSS_FDC","projectId":"NSS01_GC","lineId":"NSS02_XL","windturbineId":"NG01_12","alertValue":0,"rank":"5","category1":"FJ","category2":"GZ","category3":"TJ","lastUpdateTime":"2021-10-25 09:14:11","lastUpdatePerson":"system","stationName":"牛首山风电场","projectName":null,"lineName":null,"windturbineName":"牛首山12号风机","alertText":"总故障","modelId":"UP82","objectName":"牛首山风电场","messageTypeString":"触发","objectId":"NG01_12","opened":false,"categoryName":"风机","colors":"#FFFFFF"},{"id":365991,"faultTime":"2021-10-21 12:51:16","messageType":1,"snapID":36067,"confirmType":0,"confirmTime":null,"confirmPerson":null,"stationId":"NSS_FDC","projectId":"NSS01_GC","lineId":"NSS02_XL","windturbineId":"NG01_12","alertValue":0,"rank":"5","category1":"FJ","category2":"GZ","category3":"TJ","lastUpdateTime":"2021-10-25 09:14:11","lastUpdatePerson":"system","stationName":"牛首山风电场","projectName":null,"lineName":null,"windturbineName":"牛首山12号风机","alertText":"总故障","modelId":"UP82","objectName":"牛首山风电场","messageTypeString":"触发","objectId":"NG01_12","opened":false,"categoryName":"风机","colors":"#FFFFFF"}]'
  498. // );
  499. let select = this.options.filter(
  500. (item) => item.value === this.selectValue
  501. )[0];
  502. this.selectMoudle = select.station[0].lable;
  503. this.moudleList = select.station;
  504. if (this.timeValue.length === 0) {
  505. let date = new Date();
  506. this.timeValue[0] = date.getTime() - 86400000;
  507. this.timeValue[1] = date.getTime();
  508. }
  509. this.searchData();
  510. this.getType();
  511. // this.getRecords();
  512. this.getfaultLables();
  513. this.$nextTick(() => {
  514. this.getScatter();
  515. });
  516. },
  517. methods: {
  518. getType() {
  519. let that = this;
  520. this.API.requestData({
  521. method: "GET",
  522. baseURL: "http://192.168.10.18:8080/",
  523. subUrl: "api/coordinate/algorithm",
  524. data: {
  525. type: 0,
  526. },
  527. success(res) {
  528. if (res) {
  529. that.algorithm = res;
  530. that.chooseAlgorithm = res[0];
  531. }
  532. },
  533. });
  534. },
  535. search() {
  536. let select = this.options.filter(
  537. (item) => item.value === this.selectValue
  538. )[0];
  539. this.selectMoudle = select.station[0].lable;
  540. this.moudleList = select.station;
  541. },
  542. searchData(realFlag) {
  543. let loading = "";
  544. if (!realFlag) {
  545. this.allData = [];
  546. this.monitoringList = [];
  547. loading = this.$loading({
  548. lock: true,
  549. text: "数据加载中",
  550. spinner: "el-icon-loading",
  551. background: "rgba(0, 0, 0, 0.7)",
  552. });
  553. }
  554. const that = this;
  555. this.API.requestData({
  556. method: "GET",
  557. baseURL: "http://192.168.1.18:8075/",
  558. subUrl: "fault/history/list",
  559. data: {
  560. pagenum: "1",
  561. pagesize: 10000,
  562. stationid: this.selectValue,
  563. starttime: new Date(this.timeValue[0]).formatDate(
  564. "yyyy-MM-dd hh:mm:ss"
  565. ),
  566. endtime: new Date(this.timeValue[1]).formatDate(
  567. "yyyy-MM-dd hh:mm:ss"
  568. ),
  569. },
  570. success(res) {
  571. if (res) {
  572. let arr = [];
  573. res.forEach((item, index) => {});
  574. // let realData = [];
  575. if (!realFlag) {
  576. loading.close();
  577. }
  578. res.forEach((item, index) => {
  579. if (item.messageType === 1 && item.category1 === "FJ") {
  580. item.messageType = "触发";
  581. that.allData.push(item);
  582. if (arr.length < 11) {
  583. item.colors = "#ffffff";
  584. arr.push(item);
  585. } else if (arr.length < 33) {
  586. item.colors = "#FF0000";
  587. arr.push(item);
  588. }
  589. that.storageList = arr;
  590. // if (realFlag) {
  591. // if (that.monitoringList.length > 0) {
  592. // let arr = that.monitoringList.filter(
  593. // (val) => val.id === item.id
  594. // );
  595. // if (arr.length >= 0) {
  596. // realData.push(item);
  597. // }
  598. // }
  599. // } else {
  600. // that.allData.push(item);
  601. // that.monitoringList.push(item);
  602. // }
  603. }
  604. });
  605. that.queryData();
  606. // if (realFlag) {
  607. // that.monitoringList = [];
  608. // res.forEach((item) => {
  609. // if (item.messageType === "触发" && item.category1 === "FJ") {
  610. // that.monitoringList.push(item);
  611. // }
  612. // });
  613. // that.startTraining(realData);
  614. // }
  615. that.selectSearch();
  616. } else {
  617. loading.close();
  618. }
  619. },
  620. });
  621. },
  622. queryData() {
  623. let param = [];
  624. this.allData.forEach((item) => {
  625. param.push(item.idString);
  626. });
  627. let that = this;
  628. that.API.requestData({
  629. method: "GET",
  630. subUrl: "http://192.168.1.18:9002/case/fault/list",
  631. data: {
  632. ids: param.join(","),
  633. },
  634. success(res) {
  635. if (res) {
  636. res.data.forEach((item) => {
  637. that.allData.filter((val) => val.idString === item.faultid)[0].labels =
  638. item.faultcode;
  639. that.allData.filter((items) => items.idString === item.faultid)[0].ids =
  640. item.idString;
  641. });
  642. }
  643. },
  644. });
  645. },
  646. getFaultList(index) {
  647. let result = this.resultList[index];
  648. let that = this;
  649. this.API.requestData({
  650. method: "GET",
  651. baseURL: "http://192.168.1.18:8075/",
  652. subUrl: "fault/history/",
  653. data: {
  654. ids: result.join(","),
  655. },
  656. success(res) {
  657. if (res) {
  658. res.forEach((item) => {
  659. item.colors = that.colors[index];
  660. });
  661. that.storageList =
  662. that.storageList.length > 0 ? [that.storageList, ...res] : res;
  663. index++;
  664. if (index < that.resultList.length) {
  665. that.getFaultList(index);
  666. }
  667. }
  668. },
  669. });
  670. },
  671. selectSearch() {
  672. this.dataList = [];
  673. if (this.selectMoudle === "全部") {
  674. this.dataList = this.allData;
  675. } else {
  676. this.allData.forEach((item) => {
  677. if (item.modelId.indexOf(this.selectMoudle) != -1) {
  678. this.dataList.push(item);
  679. }
  680. });
  681. }
  682. },
  683. getScatter() {
  684. let chartDom = document.getElementById("scatter");
  685. let myChart = echarts.init(chartDom);
  686. let option = {
  687. legend: {
  688. show: true,
  689. data: ["测试", "测试1"],
  690. right: 56,
  691. icon: "circle",
  692. itemWidth: 6,
  693. inactiveColor: "#606769",
  694. textStyle: {
  695. color: "#B3BDC0",
  696. fontSize: 12,
  697. },
  698. },
  699. xAxis: {
  700. splitLine: { show: false },
  701. },
  702. yAxis: {
  703. splitLine: { show: false },
  704. },
  705. tooltip: {
  706. position: "top",
  707. },
  708. series: this.series,
  709. };
  710. option && myChart.setOption(option);
  711. },
  712. algorithmChange(val) {
  713. this.chooseAlgorithm = this.algorithm.filter(
  714. (item) => item.name === val
  715. )[0];
  716. },
  717. TypeClick(btnType) {
  718. if (btnType === "sjfl") {
  719. this.display = true;
  720. } else if (btnType === "xljl") {
  721. this.recordsDisplay = true;
  722. }
  723. },
  724. handleTraining() {
  725. let that = this;
  726. that.resultList = [];
  727. this.API.requestData({
  728. method: "GET",
  729. baseURL: "http://192.168.10.18:8080/",
  730. subUrl: "api/coordinate/",
  731. success(res) {
  732. if (res) {
  733. let dataList = [];
  734. res.forEach((item, index) => {
  735. let idList = [];
  736. item.value.forEach((val) => {
  737. let datas = {};
  738. let arr = val[2].split("-");
  739. let dataArr = [];
  740. datas.name =
  741. arr[0] +
  742. "-" +
  743. new Date(Number(arr[1])).formatDate("yyyy-MM-dd hh:mm:ss");
  744. dataArr.push([Number(val[0]), Number(val[1])]);
  745. idList.push(arr[2]);
  746. datas.symbolSize = 10;
  747. datas.encode = { tooltip: [0, 1] };
  748. datas.data = dataArr;
  749. datas.type = "scatter";
  750. datas.itemStyle = { color: that.colors[index] };
  751. dataList.push(datas);
  752. });
  753. that.resultList.push(idList);
  754. });
  755. that.series = dataList;
  756. that.getScatter();
  757. }
  758. },
  759. });
  760. this.API.requestData({
  761. method: "GET",
  762. baseURL: "http://192.168.10.18:8080/",
  763. subUrl: "api/coordinate/progress",
  764. success(res) {
  765. that.showTraining = true;
  766. if (res) {
  767. that.trainingFlag = res.value === -1 ? false : true;
  768. that.width = res.value === -1 ? -1 : (res.value * 100).toFixed(2);
  769. if (that.width < 100) {
  770. setTimeout(() => {
  771. that.handleTraining();
  772. }, 1000);
  773. } else {
  774. if (that.resultList.length > 0) {
  775. that.storageList = [];
  776. that.getFaultList(0);
  777. }
  778. that.$refs.dataClass.reset();
  779. }
  780. }
  781. },
  782. });
  783. },
  784. recordResults(val) {
  785. this.showList = val;
  786. this.resultsDisplay = true;
  787. },
  788. inputChange(val) {
  789. val.value = Math.abs(val.value);
  790. if (val.type === "float") {
  791. val.value = val.value.toFixed(2);
  792. } else {
  793. val.value = val.value.toFixed(0);
  794. }
  795. },
  796. clear() {
  797. this.chooseAlgorithm = {};
  798. },
  799. intervals(intervalValue) {
  800. this.intervalValue = intervalValue;
  801. },
  802. // getRecords() {
  803. // let that = this;
  804. // this.API.requestData({
  805. // method: "GET",
  806. // baseURL: "http://192.168.10.18:8080/",
  807. // subUrl: "api/coordinate/history",
  808. // success(res) {
  809. // if (res) {
  810. // res.forEach((item) => {
  811. // let arr = item.name.split("-");
  812. // item.names =
  813. // arr[0] +
  814. // "-" +
  815. // new Date(Number(arr[1])).formatDate("yyyy-MM-dd hh:mm:ss");
  816. // });
  817. // that.recordValue = res[0].names;
  818. // that.recordList = res;
  819. // }
  820. // },
  821. // });
  822. // },
  823. // startTraining(realData) {
  824. // let params = {};
  825. // let dataInfos = [];
  826. // realData.forEach((item) => {
  827. // let datas = {};
  828. // datas.startTs =
  829. // new Date(item.faultTime).getTime() - this.intervalValue * 3600000;
  830. // datas.endTs = new Date(item.faultTime).getTime();
  831. // datas.thingId = item.objectId;
  832. // datas.modelId = item.modelId;
  833. // datas.stationId = item.stationId;
  834. // datas.id = item.id;
  835. // datas.faultTime = new Date(item.faultTime).getTime();
  836. // dataInfos.push(datas);
  837. // });
  838. // let paramt = this.recordList.filter(
  839. // (item) => item.names === this.recordValue
  840. // )[0];
  841. // let arr = paramt.name.split("-");
  842. // let algorithm = {
  843. // name: arr[0],
  844. // parameter: paramt.name,
  845. // };
  846. // params.algorithm = algorithm;
  847. // params.dataInfos = dataInfos;
  848. // axios({
  849. // method: "post",
  850. // url: "http://192.168.10.18:8080/api/coordinate/execute",
  851. // data: params,
  852. // header: {
  853. // "Content-Type": "application/json",
  854. // },
  855. // }).then((res) => {
  856. // if (res) {
  857. // let dataList = [];
  858. // res.forEach((item, index) => {
  859. // let idList = [];
  860. // item.value.forEach((val) => {
  861. // let datas = {};
  862. // let arr = val[2].split("-");
  863. // let dataArr = [];
  864. // datas.name =
  865. // arr[0] +
  866. // "-" +
  867. // new Date(Number(arr[1])).formatDate("yyyy-MM-dd hh:mm:ss");
  868. // dataArr.push([Number(val[0]), Number(val[1])]);
  869. // idList.push(arr[2]);
  870. // datas.symbolSize = 10;
  871. // datas.encode = { tooltip: [0, 1] };
  872. // datas.data = dataArr;
  873. // datas.type = "scatter";
  874. // datas.itemStyle = { color: this.colors[index] };
  875. // dataList.push(datas);
  876. // });
  877. // this.resultList.push(idList);
  878. // });
  879. // this.series = dataList;
  880. // this.getScatter();
  881. // }
  882. // });
  883. // },
  884. getfaultLables() {
  885. let that = this;
  886. this.API.requestData({
  887. method: "GET",
  888. subUrl: "http://192.168.1.18:9002/know/fault/type/all",
  889. success(res) {
  890. if (res) {
  891. that.faultLists = res.data;
  892. }
  893. },
  894. });
  895. },
  896. batchDeal() {
  897. this.batchDisplay = true;
  898. },
  899. selectChange(data) {
  900. let arr = [];
  901. arr.push(data);
  902. this.saveData(arr);
  903. },
  904. saveData(data) {
  905. let params = [];
  906. data.forEach((item) => {
  907. if (item.labels) {
  908. let obj = {
  909. faultid: item.idString,
  910. stationcn: item.stationName,
  911. windturbineid: item.objectId,
  912. faulttype: this.faultLists.filter(
  913. (items) => items.faultcode === item.labels
  914. )[0]?.faulttype,
  915. faultcode: item.labels,
  916. starttime: item.faultTime,
  917. model: item.modelId,
  918. stationen: item.stationId,
  919. tag: 0,
  920. };
  921. if (item.ids) {
  922. obj.id = item.ids;
  923. }
  924. params.push(obj);
  925. }
  926. });
  927. if (params.length > 0) {
  928. axios({
  929. method: "post",
  930. url: "http://192.168.1.18:9002/case/fault/insert",
  931. data: params,
  932. header: {
  933. "Content-Type": "application/json",
  934. },
  935. }).then((res) => {
  936. if (res.data.code !== 200) {
  937. this.BASE.showMsg({
  938. type: "error",
  939. msg: "标签修改失败",
  940. });
  941. }
  942. });
  943. }
  944. },
  945. },
  946. };
  947. </script>
  948. <style scope lang="less">
  949. el-table__row > td {
  950. border: none;
  951. }
  952. .el-table::before {
  953. height: 0px;
  954. }
  955. .decision-page-1 {
  956. .com-panel .panel-title {
  957. line-height: 3.4259vh;
  958. }
  959. .tools {
  960. display: flex;
  961. line-height: 3.4259vh;
  962. .tool-block {
  963. display: flex;
  964. align-items: center;
  965. margin-left: 0.741vh;
  966. .legend {
  967. flex: auto;
  968. width: 0.741vh;
  969. height: 0.741vh;
  970. margin-right: 0.741vh;
  971. &.long {
  972. width: 2.963vh;
  973. height: 0.37vh;
  974. }
  975. }
  976. .legend-text {
  977. color: @gray-l;
  978. font-size: @fontsize-s;
  979. }
  980. }
  981. }
  982. .project-table {
  983. overflow: auto;
  984. tbody {
  985. height: calc(100vh - 24.5vh);
  986. }
  987. td {
  988. color: #b2bdc0;
  989. }
  990. }
  991. .contentMx {
  992. width: 100%;
  993. overflow-x: auto;
  994. }
  995. .activeMx {
  996. width: 150%;
  997. }
  998. .dataTitle {
  999. display: flex;
  1000. flex-direction: row;
  1001. align-items: center;
  1002. justify-content: space-between;
  1003. margin-bottom: 20px;
  1004. margin-top: 10px;
  1005. .chooses {
  1006. display: flex;
  1007. flex-direction: row;
  1008. align-items: center;
  1009. }
  1010. .timeInput {
  1011. width: 30px;
  1012. }
  1013. .contents {
  1014. display: flex;
  1015. flex-direction: row;
  1016. align-items: center;
  1017. margin-left: 30px;
  1018. }
  1019. }
  1020. .scatterEcharts {
  1021. width: 600px;
  1022. height: 500px;
  1023. }
  1024. .progressTitle {
  1025. display: flex;
  1026. flex-direction: row;
  1027. .progressNum {
  1028. margin-left: 20px;
  1029. }
  1030. }
  1031. .results {
  1032. margin-left: 35px;
  1033. }
  1034. .box {
  1035. width: 80%;
  1036. margin-top: 20px;
  1037. height: 20px;
  1038. display: flex;
  1039. align-items: center;
  1040. .progress {
  1041. background: linear-gradient(to right, #0d692c, #6df0a0);
  1042. height: 16px;
  1043. z-index: 1;
  1044. }
  1045. .line {
  1046. width: 1px;
  1047. height: 70px;
  1048. z-index: 2;
  1049. background: linear-gradient(
  1050. to bottom,
  1051. rgba(158, 151, 151, 0) 0%,
  1052. rgba(0, 0, 0, 0) 10%,
  1053. rgba(255, 255, 255, 0.3) 20%,
  1054. rgba(255, 255, 255, 0.6) 30%,
  1055. rgba(255, 255, 255, 0.8) 40%,
  1056. rgba(255, 255, 255, 1) 50%,
  1057. rgba(255, 255, 255, 0.8) 60%,
  1058. rgba(255, 255, 255, 0.6) 70%,
  1059. rgba(255, 255, 255, 0.3) 80%,
  1060. rgba(0, 0, 0, 0) 90%,
  1061. rgba(0, 0, 0, 0) 100%
  1062. );
  1063. transition: width 0.2s linear;
  1064. }
  1065. .unprogress {
  1066. background: linear-gradient(to right, #41acec, #003e7a);
  1067. height: 16px;
  1068. z-index: 1;
  1069. }
  1070. }
  1071. }
  1072. input::-webkit-outer-spin-button,
  1073. input::-webkit-inner-spin-button {
  1074. -webkit-appearance: none;
  1075. }
  1076. .records {
  1077. width: 100%;
  1078. display: flex;
  1079. flex-direction: row-reverse;
  1080. align-items: center;
  1081. }
  1082. .selectt {
  1083. width: 270px !important;
  1084. }
  1085. .buts {
  1086. display: flex;
  1087. flex-direction: row;
  1088. align-items: center;
  1089. justify-content: center;
  1090. }
  1091. </style>