MalfunctionWarning.vue 32 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115
  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.faultIds)[0].labels =
  638. item.faultcode;
  639. that.allData.filter((items) => items.idString === item.faultIds)[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. category: 1,
  921. };
  922. if (item.ids) {
  923. obj.id = item.ids;
  924. }
  925. params.push(obj);
  926. }
  927. });
  928. if (params.length > 0) {
  929. axios({
  930. method: "post",
  931. url: "http://192.168.1.18:9002/case/fault/insert",
  932. data: params,
  933. header: {
  934. "Content-Type": "application/json",
  935. },
  936. }).then((res) => {
  937. if (res.data.code !== 200) {
  938. this.BASE.showMsg({
  939. type: "error",
  940. msg: "标签修改失败",
  941. });
  942. }
  943. });
  944. }
  945. },
  946. },
  947. };
  948. </script>
  949. <style scope lang="less">
  950. el-table__row > td {
  951. border: none;
  952. }
  953. .el-table::before {
  954. height: 0px;
  955. }
  956. .decision-page-1 {
  957. .com-panel .panel-title {
  958. line-height: 3.4259vh;
  959. }
  960. .tools {
  961. display: flex;
  962. line-height: 3.4259vh;
  963. .tool-block {
  964. display: flex;
  965. align-items: center;
  966. margin-left: 0.741vh;
  967. .legend {
  968. flex: auto;
  969. width: 0.741vh;
  970. height: 0.741vh;
  971. margin-right: 0.741vh;
  972. &.long {
  973. width: 2.963vh;
  974. height: 0.37vh;
  975. }
  976. }
  977. .legend-text {
  978. color: @gray-l;
  979. font-size: @fontsize-s;
  980. }
  981. }
  982. }
  983. .project-table {
  984. overflow: auto;
  985. tbody {
  986. height: calc(100vh - 24.5vh);
  987. }
  988. td {
  989. color: #b2bdc0;
  990. }
  991. }
  992. .contentMx {
  993. width: 100%;
  994. overflow-x: auto;
  995. }
  996. .activeMx {
  997. width: 150%;
  998. }
  999. .dataTitle {
  1000. display: flex;
  1001. flex-direction: row;
  1002. align-items: center;
  1003. justify-content: space-between;
  1004. margin-bottom: 20px;
  1005. margin-top: 10px;
  1006. .chooses {
  1007. display: flex;
  1008. flex-direction: row;
  1009. align-items: center;
  1010. }
  1011. .timeInput {
  1012. width: 30px;
  1013. }
  1014. .contents {
  1015. display: flex;
  1016. flex-direction: row;
  1017. align-items: center;
  1018. margin-left: 30px;
  1019. }
  1020. }
  1021. .scatterEcharts {
  1022. width: 600px;
  1023. height: 500px;
  1024. }
  1025. .progressTitle {
  1026. display: flex;
  1027. flex-direction: row;
  1028. .progressNum {
  1029. margin-left: 20px;
  1030. }
  1031. }
  1032. .results {
  1033. margin-left: 35px;
  1034. }
  1035. .box {
  1036. width: 80%;
  1037. margin-top: 20px;
  1038. height: 20px;
  1039. display: flex;
  1040. align-items: center;
  1041. .progress {
  1042. background: linear-gradient(to right, #0d692c, #6df0a0);
  1043. height: 16px;
  1044. z-index: 1;
  1045. }
  1046. .line {
  1047. width: 1px;
  1048. height: 70px;
  1049. z-index: 2;
  1050. background: linear-gradient(
  1051. to bottom,
  1052. rgba(158, 151, 151, 0) 0%,
  1053. rgba(0, 0, 0, 0) 10%,
  1054. rgba(255, 255, 255, 0.3) 20%,
  1055. rgba(255, 255, 255, 0.6) 30%,
  1056. rgba(255, 255, 255, 0.8) 40%,
  1057. rgba(255, 255, 255, 1) 50%,
  1058. rgba(255, 255, 255, 0.8) 60%,
  1059. rgba(255, 255, 255, 0.6) 70%,
  1060. rgba(255, 255, 255, 0.3) 80%,
  1061. rgba(0, 0, 0, 0) 90%,
  1062. rgba(0, 0, 0, 0) 100%
  1063. );
  1064. transition: width 0.2s linear;
  1065. }
  1066. .unprogress {
  1067. background: linear-gradient(to right, #41acec, #003e7a);
  1068. height: 16px;
  1069. z-index: 1;
  1070. }
  1071. }
  1072. }
  1073. input::-webkit-outer-spin-button,
  1074. input::-webkit-inner-spin-button {
  1075. -webkit-appearance: none;
  1076. }
  1077. .records {
  1078. width: 100%;
  1079. display: flex;
  1080. flex-direction: row-reverse;
  1081. align-items: center;
  1082. }
  1083. .selectt {
  1084. width: 270px !important;
  1085. }
  1086. .buts {
  1087. display: flex;
  1088. flex-direction: row;
  1089. align-items: center;
  1090. justify-content: center;
  1091. }
  1092. </style>