qushiDialog.vue 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891
  1. <template>
  2. <div>
  3. <el-dialog
  4. class="dialogs"
  5. width="85%"
  6. top="8vh"
  7. v-model="dialogCurveVisible"
  8. :show-close="true"
  9. @close="handleClose"
  10. >
  11. <template #title>
  12. <div class="dialog-title">
  13. <img class="dialog-title-img" src="@assets/imgs/dialog-title.png" />
  14. <div class="title">{{ chartName }}</div>
  15. <!-- <i class="el-icon-full-screen" @click="c"></i>-->
  16. </div>
  17. </template>
  18. <div class="dialog-body" style="height: 51vh; width: 100%">
  19. <div style="margin-top: -20px; margin-bottom: 20px">
  20. <div
  21. style="
  22. height: 5vh;
  23. line-height: 5vh;
  24. flex-direction: row;
  25. align-items: center;
  26. display: flex;
  27. "
  28. >
  29. <div class="qushi-form">
  30. <div class="station">
  31. 开始时间
  32. <div
  33. class="search-input"
  34. style="margin-left: 5px; margin-right: 10px"
  35. >
  36. <el-date-picker
  37. v-model="starttime"
  38. type="datetime"
  39. placeholder="选择日期"
  40. format="YYYY-MM-DD HH:mm:ss"
  41. class="datetime_picker"
  42. popper-class="elDatePicker"
  43. >
  44. </el-date-picker>
  45. </div>
  46. </div>
  47. <div class="station">
  48. 结束时间
  49. <div
  50. class="search-input"
  51. style="margin-left: 5px; margin-right: 10px"
  52. >
  53. <el-date-picker
  54. v-model="endtime"
  55. type="datetime"
  56. placeholder="选择日期"
  57. format="YYYY-MM-DD HH:mm:ss"
  58. class="datetime_picker"
  59. popper-class="elDatePicker"
  60. >
  61. </el-date-picker>
  62. </div>
  63. </div>
  64. <div class="station">
  65. 时间间隔(秒)
  66. <div>
  67. <el-input-number
  68. size="medium"
  69. v-model="numgap"
  70. :precision="0"
  71. ></el-input-number>
  72. </div>
  73. </div>
  74. <el-button
  75. style="margin-left: 15px"
  76. round
  77. :disabled="timerFlag"
  78. size="mini"
  79. class="searchColor"
  80. @click="throttleSearch"
  81. >查询
  82. </el-button>
  83. </div>
  84. <div class="qushi-tools">
  85. <el-button
  86. class="customColor"
  87. round
  88. size="mini"
  89. type="primary"
  90. @click="showYsetDialog"
  91. icon="el-icon-edit"
  92. >自定义多坐标
  93. </el-button>
  94. <el-tooltip
  95. class="item"
  96. effect="dark"
  97. content="导出"
  98. placement="bottom"
  99. >
  100. <el-button
  101. class="updownTit"
  102. round
  103. size="mini"
  104. type="primary"
  105. @click="exportDatas"
  106. >
  107. <i class="svg-icon svg-icon-sm svg-icon-white">
  108. <SvgIcon svgid="svg-dataout"></SvgIcon
  109. ></i>
  110. </el-button>
  111. </el-tooltip>
  112. </div>
  113. </div>
  114. </div>
  115. <img
  116. class="dialog-img"
  117. style="bottom: -166px"
  118. src="@assets/imgs/dialog.png"
  119. />
  120. <windChartCom
  121. ref="windChartCom"
  122. :height="chartHeight"
  123. :list="chartsData"
  124. :interval="intervalgap"
  125. :units="units"
  126. :unitDatas="unitDatas"
  127. :showLegend="false"
  128. :showXdata="false"
  129. :animate="false"
  130. :ratio="1000"
  131. />
  132. </div>
  133. <div class="economicTable1 mentues met" style="margin-top: 10px">
  134. <el-table
  135. :data="detailsValue"
  136. class="table-fixed tables"
  137. ref="multipleTable"
  138. :cell-style="tagCellStyle"
  139. height="23vh"
  140. fit
  141. stripe
  142. >
  143. <el-table-column
  144. align="center"
  145. prop="name"
  146. label="指标名称"
  147. width="500"
  148. show-overflow-tooltip
  149. >
  150. </el-table-column>
  151. <el-table-column
  152. align="center"
  153. prop="tagName"
  154. label="描述"
  155. width="400"
  156. show-overflow-tooltip
  157. >
  158. </el-table-column>
  159. <el-table-column
  160. align="center"
  161. prop="dateTime"
  162. label="快照时间"
  163. width="200"
  164. >
  165. </el-table-column>
  166. <el-table-column align="center" prop="value" label="快照值">
  167. </el-table-column>
  168. <el-table-column align="center" prop="minvalue" label="最大值">
  169. </el-table-column>
  170. <el-table-column align="center" prop="maxvalue" label="最小值">
  171. </el-table-column>
  172. <el-table-column align="center" prop="avgvalue" label="平均值">
  173. </el-table-column>
  174. <el-table-column
  175. prop="showy"
  176. label="操作"
  177. align="center"
  178. width="110"
  179. style="cursor: pointer"
  180. >
  181. <template v-slot="scoped">
  182. <i
  183. style="cursor: pointer"
  184. class="svg-icon svg-icon-sm svg-icon-gray checkIcon"
  185. >
  186. <SvgIcon
  187. :svgid="scoped.row.showy ? 'svg-show' : 'svg-hide'"
  188. ></SvgIcon
  189. ></i>
  190. <el-switch
  191. v-model="scoped.row.showy"
  192. @change="curveSwitchData(scoped.row)"
  193. inactive-color="rgba(0,0,0,0)"
  194. active-color="rgba(0,0,0,0)"
  195. >
  196. </el-switch>
  197. </template>
  198. </el-table-column>
  199. </el-table>
  200. </div>
  201. </el-dialog>
  202. <el-dialog
  203. class="ysetDialog"
  204. width="43%"
  205. v-model="ysetDialogVisible"
  206. :show-close="true"
  207. >
  208. <template #title>
  209. <div class="dialog-title">
  210. <img class="dialog-title-img" src="@assets/imgs/dialog-title.png" />
  211. <div class="title">{{ ysetName }}</div>
  212. </div>
  213. </template>
  214. <div class="dialog-body mentuese metse" style="height: 35vh">
  215. <el-table
  216. :data="tagDatas"
  217. class="table-fixed tables"
  218. ref="multipleTable"
  219. :cell-style="tagCellStyle2"
  220. height="100%"
  221. style="width: 100%"
  222. fit
  223. empty-text="暂无数据"
  224. stripe
  225. >
  226. <el-table-column
  227. prop="tagName"
  228. label="指标名称"
  229. align="center"
  230. fixed
  231. width="420"
  232. >
  233. </el-table-column>
  234. <el-table-column
  235. prop="minvalue"
  236. label="最小值"
  237. align="center"
  238. fixed
  239. width="180"
  240. >
  241. <template v-slot="scoped">
  242. <el-input-number
  243. size="small"
  244. v-model="scoped.row.min"
  245. controls-position="right"
  246. ></el-input-number>
  247. </template>
  248. </el-table-column>
  249. <el-table-column
  250. prop="maxvalue"
  251. label="最大值"
  252. align="center"
  253. fixed
  254. width="180"
  255. >
  256. <template v-slot="scoped">
  257. <el-input-number
  258. size="small"
  259. v-model="scoped.row.max"
  260. controls-position="right"
  261. ></el-input-number>
  262. </template>
  263. </el-table-column>
  264. </el-table>
  265. </div>
  266. <img
  267. class="dialog-img"
  268. style="position: absolute; bottom: 50px; right: 0"
  269. src="@assets/imgs/dialog.png"
  270. />
  271. <el-row
  272. class="footerButton changeButton"
  273. style="text-align: center; margin-top: 20px"
  274. >
  275. <el-button
  276. size="medium"
  277. style="width: 125px"
  278. round
  279. @click="cancelMultiys()"
  280. >取消多坐标</el-button
  281. >
  282. <el-button type="primary" size="medium" round @click="saveEditTagInfo()"
  283. >确定</el-button
  284. >
  285. </el-row>
  286. </el-dialog>
  287. </div>
  288. </template>
  289. <script>
  290. import {
  291. GetWtPoints,
  292. GetWpPoints,
  293. GetPointFitting,
  294. GetSubPoints,
  295. GetProPoints,
  296. } from "@/api/points/index.js";
  297. import SvgIcon from "@com/coms/icon/svg-icon.vue";
  298. import dayjs from "dayjs";
  299. import windChartCom from "./lineCharts.vue";
  300. export default {
  301. name: "changeCheck", //趋势对比
  302. components: {
  303. windChartCom,
  304. SvgIcon,
  305. },
  306. props: {
  307. data: {
  308. type: String,
  309. required: true,
  310. },
  311. chartName: {
  312. type: String,
  313. required: true,
  314. },
  315. index: {
  316. type: String,
  317. required: true,
  318. },
  319. title: {
  320. type: String,
  321. required: true,
  322. },
  323. },
  324. data() {
  325. return {
  326. value: true,
  327. dialogVisibles: false,
  328. stse: [],
  329. sts: [],
  330. statiomName: [],
  331. leng: "",
  332. x: 500,
  333. y: 250,
  334. starttime: new Date(),
  335. endtime: "",
  336. stationTit: null,
  337. dragging: false,
  338. currentX: 50,
  339. currentY: 0,
  340. initialX: 0,
  341. initialY: 0,
  342. tableShow: true,
  343. tmp: [],
  344. detailsValue: [],
  345. numgap: 900,
  346. intervalgap: 7,
  347. tmpData: "",
  348. units: [],
  349. color: [
  350. "#1985de",
  351. "#ff8300",
  352. "#06a746",
  353. "#3eede7",
  354. "#eb0f7c",
  355. "#dfdc0a",
  356. "#de0feb",
  357. "#cca4e3",
  358. ],
  359. unitDatas: [{ flag: false, min: 0, max: 0, codex: 0 }],
  360. tagDatas: [],
  361. handleSwitch: false,
  362. chartsData: [],
  363. chartsDataAll: [],
  364. dialogCurveVisible: false,
  365. ysetDialogVisible: false,
  366. ysetName: "自定义多坐标",
  367. visibles: "",
  368. cilent: "",
  369. dialogFull: false,
  370. chartHeight: "43vh",
  371. tagNames: "",
  372. pointIds: "",
  373. searchFlag: false, //判断是否重置多坐标
  374. changeYset: false, //是否设置过多坐标
  375. ined: 1, //查询测点类型
  376. timerFlag: false,
  377. };
  378. },
  379. created() {
  380. this.starttime = new Date(new Date().setHours(0, 0, 0, 0));
  381. this.endtime = new Date();
  382. },
  383. methods: {
  384. // 防止按钮频繁点击
  385. throttleSearch() {
  386. this.timerFlag = true;
  387. setTimeout(() => {
  388. this.searchChartData();
  389. this.timerFlag = false;
  390. }, 2000);
  391. },
  392. // 指标样式
  393. tagCellStyle({ row, column, rowIndex, columnIndex }) {
  394. if (!row.showy) {
  395. return { color: "#525252", fontSize: "11px" };
  396. }
  397. if ((columnIndex == 0 || columnIndex == 1) && row.showy) {
  398. return { color: this.color[rowIndex], fontSize: "13px" };
  399. } else {
  400. return { padding: "6px 0px" };
  401. }
  402. },
  403. // 指标样式
  404. tagCellStyle2({ row, column, rowIndex, columnIndex }) {
  405. if (columnIndex == 0) {
  406. return { color: this.color[rowIndex] + "!important", fontSize: "13px" };
  407. } else {
  408. return { padding: "6px 0px" };
  409. }
  410. },
  411. // 取消多坐标
  412. cancelMultiys() {
  413. this.searchFlag = false;
  414. this.units = [];
  415. this.unitDatas = [];
  416. this.tagDatas.forEach((value, index) => {
  417. if (index == 0) {
  418. this.units.push(this.chartsData[0].title);
  419. this.unitDatas.push({ flag: false, min: 0, max: 0, codex: 0 });
  420. }
  421. });
  422. this.chartsData.forEach((value2, index2) => {
  423. value2.yAxisIndex = 0;
  424. });
  425. this.ysetDialogVisible = false;
  426. this.changeYset = false;
  427. },
  428. // 展示多坐标弹窗
  429. showYsetDialog() {
  430. var maxy = this.$refs.windChartCom.childMethod(0);
  431. this.tagDatas.forEach((value, index) => {
  432. if (value.showy) {
  433. value.max = this.$refs.windChartCom.childMethod(index);
  434. } else {
  435. value.max = maxy;
  436. }
  437. });
  438. this.ysetDialogVisible = true;
  439. this.changeYset = true;
  440. },
  441. // 保存多坐标信息
  442. saveEditTagInfo() {
  443. if (this.changeYset) {
  444. this.units = [];
  445. this.unitDatas = [];
  446. this.chartsData.forEach((value, index) => {
  447. value.yAxisIndex = 0;
  448. });
  449. this.tagDatas.forEach((value, index) => {
  450. if (index == 0) {
  451. this.units.push(this.chartsData[0].title);
  452. this.unitDatas.push({
  453. flag: true,
  454. min: value.min,
  455. max: value.max,
  456. codex: 0,
  457. });
  458. }
  459. if (index > 0) {
  460. this.units.push(value.tagName);
  461. this.unitDatas.push({
  462. flag: true,
  463. min: value.min,
  464. max: value.max,
  465. codex: index,
  466. });
  467. this.chartsData.forEach((value2, index2) => {
  468. if (value2.title == value.tagName) {
  469. value2.yAxisIndex = index;
  470. }
  471. });
  472. }
  473. });
  474. this.changeYset = true;
  475. } else {
  476. this.changeYset = false;
  477. }
  478. this.ysetDialogVisible = false;
  479. },
  480. exportDatas() {},
  481. c() {
  482. this.dialogFull ? (this.dialogFull = false) : (this.dialogFull = true);
  483. },
  484. curveSwitchData(e) {
  485. this.value = e.showy;
  486. var option = "{";
  487. this.detailsValue.forEach((value, index) => {
  488. option += "'" + value.tagName + "'" + ":" + value.showy + ",";
  489. });
  490. option = option.substring(0, option.length - 1);
  491. option += "}";
  492. var json = eval("(" + option + ")");
  493. this.$refs.windChartCom.changDateVisible(json);
  494. },
  495. // 弹窗首次加载对比曲线
  496. openCurvDatas(valse, ined, wtid) {
  497. this.ined = ined;
  498. this.searchFlag = false;
  499. this.changeYset = false;
  500. this.wtid = wtid;
  501. this.dialogCurveVisible = true;
  502. this.detailsValue = [];
  503. this.tagDatas = [];
  504. this.units = [];
  505. this.unitDatas = [];
  506. this.numgap = 900;
  507. this.intervalgap = 7;
  508. let tagNames = "";
  509. this.tmpData = valse;
  510. this.tmpData.forEach((value, index) => {
  511. tagNames += value.sts + ",";
  512. });
  513. this.tagNames = tagNames.substring(0, tagNames.length - 1);
  514. if (ined == 1) {
  515. this.getWpPoints(wtid);
  516. } else if (ined == 2) {
  517. this.getWtPoints(wtid);
  518. } else if (ined == 3) {
  519. this.getPoints(this.tagNames);
  520. } else if (ined == 4) {
  521. this.getSubPoints(wtid);
  522. } else if (ined == 5) {
  523. this.getProPoints(wtid);
  524. }
  525. },
  526. // 查询设备测点
  527. getWtPoints(wtid) {
  528. GetWtPoints({
  529. wtid,
  530. uniformcodes: this.tagNames,
  531. }).then((res) => {
  532. this.tmpData.forEach((item) => {
  533. res.data.data.forEach((i) => {
  534. if (item.sts == i.uniformCode) {
  535. item.sts = i.nemCode;
  536. item.statiomName = i.name;
  537. }
  538. });
  539. // if()
  540. });
  541. let pointIds = "";
  542. res.data.data.forEach((value) => {
  543. pointIds += value.nemCode + ",";
  544. });
  545. pointIds = pointIds.substring(0, pointIds.length - 1);
  546. this.getPoints(pointIds);
  547. });
  548. },
  549. // 查询场站测点
  550. getWpPoints(wpid) {
  551. GetWpPoints({
  552. wpid,
  553. uniformcodes: this.tagNames,
  554. }).then((res) => {
  555. let resData = res.data.data.map((item) => {
  556. if (item == null) {
  557. return {};
  558. } else {
  559. return { ...item };
  560. }
  561. });
  562. let pointIds = "";
  563. this.tmpData.forEach((item) => {
  564. resData.forEach((i) => {
  565. if (Object.keys(i).length) {
  566. if (item.sts == i.uniformCode) {
  567. item.sts = i.nemCode;
  568. item.statiomName = i.name;
  569. }
  570. } else {
  571. item.sts = "";
  572. item.statiomName = "";
  573. }
  574. });
  575. });
  576. resData.forEach((value) => {
  577. if (!value) {
  578. value.nemCode = "";
  579. }
  580. pointIds += value.nemCode + ",";
  581. });
  582. pointIds = pointIds.substring(0, pointIds.length - 1);
  583. this.getPoints(pointIds);
  584. });
  585. },
  586. // 查询调度场站测点
  587. getSubPoints(wpid) {
  588. GetSubPoints({
  589. wpid,
  590. uniformcodes: this.tagNames,
  591. }).then((res) => {
  592. this.tmpData.forEach((item) => {
  593. res.data.data.forEach((i) => {
  594. if (item.sts == i.uniformCode) {
  595. item.sts = i.nemCode;
  596. item.statiomName = i.name;
  597. }
  598. });
  599. });
  600. let pointIds = "";
  601. res.data.data.forEach((value) => {
  602. pointIds += value.nemCode + ",";
  603. });
  604. pointIds = pointIds.substring(0, pointIds.length - 1);
  605. this.getPoints(pointIds);
  606. });
  607. },
  608. // 查询场站期次测点
  609. getProPoints(wpid) {
  610. GetProPoints({
  611. wpid,
  612. uniformcodes: this.tagNames,
  613. }).then((res) => {
  614. this.tmpData.forEach((item) => {
  615. res.data.data.forEach((i) => {
  616. if (item.sts == i.uniformCode) {
  617. item.sts = i.nemCode;
  618. item.statiomName = i.name;
  619. }
  620. });
  621. });
  622. let pointIds = "";
  623. res.data.data.forEach((value) => {
  624. pointIds += value.nemCode + ",";
  625. });
  626. pointIds = pointIds.substring(0, pointIds.length - 1);
  627. this.getPoints(pointIds);
  628. });
  629. },
  630. // 查询测点
  631. getPoints(pointIds) {
  632. GetPointFitting({
  633. begin: dayjs(this.starttime).format("YYYY-MM-DD HH:mm:ss"),
  634. end: dayjs(this.endtime).format("YYYY-MM-DD HH:mm:ss"),
  635. interval: this.numgap,
  636. pointIds,
  637. }).then((res) => {
  638. if (res.data.data.length) {
  639. let powerLineChartData = [];
  640. let resData = res.data.data;
  641. resData.forEach((value, index) => {
  642. var option = {
  643. title:
  644. this.ined == 3
  645. ? this.tmpData[index].stse + this.tmpData[index].statiomName
  646. : this.tmpData[index].statiomName,
  647. tagName: this.tmpData[index].sts,
  648. yAxisIndex: 0,
  649. value: value
  650. ? value.map((item) => {
  651. return {
  652. dateTime: item.pointTime,
  653. value: item.pointValueInDouble,
  654. };
  655. })
  656. : [],
  657. noRatio: true,
  658. };
  659. powerLineChartData.push(option);
  660. });
  661. this.chartsData = powerLineChartData;
  662. this.chartsDataAll = JSON.parse(JSON.stringify(this.chartsData));
  663. this.dialogCurveVisible = true;
  664. let tagDatas = [];
  665. resData.forEach((value, index) => {
  666. var option = {
  667. tagName:
  668. this.ined == 3
  669. ? this.tmpData[index].stse + this.tmpData[index].statiomName
  670. : this.tmpData[index].statiomName,
  671. min: 0,
  672. max: 0,
  673. showy: false,
  674. };
  675. tagDatas.push(option);
  676. });
  677. tagDatas[0].showy = true;
  678. if (!this.searchFlag) {
  679. this.units = [this.chartsData[0].title];
  680. this.unitDatas.push({ flag: false, min: 0, max: 0, codex: 0 });
  681. this.tagDatas = tagDatas;
  682. } else {
  683. this.saveEditTagInfo();
  684. }
  685. resData.forEach((value, index) => {
  686. var option;
  687. if (value != null && value.length > 0) {
  688. let dateTime = null;
  689. let dateValue = null;
  690. let vals = [];
  691. for (var i = value.length - 1; i >= 0; i--) {
  692. if (value[i].pointValueInDouble !== "") {
  693. dateTime = dayjs(value[i].pointTime).format(
  694. "YYYY-MM-DD HH:mm:ss"
  695. );
  696. dateValue = Number(value[i].pointValueInDouble).toFixed(2);
  697. break;
  698. }
  699. }
  700. for (var j = value.length - 1; j >= 0; j--) {
  701. if (value[j].pointValueInDouble !== "") {
  702. vals.push(value[j].pointValueInDouble);
  703. }
  704. }
  705. let maxValue = vals.sort()[0].toFixed(2);
  706. let minValue = vals.sort().reverse()[0].toFixed(2);
  707. let totalValue = 0;
  708. for (var k = 0; k < vals.length; k++) {
  709. totalValue += vals[k];
  710. }
  711. let avgValue = (totalValue / vals.length).toFixed(2);
  712. option = {
  713. name: this.tmpData[index].sts,
  714. tagName:
  715. this.ined == 3
  716. ? this.tmpData[index].stse + this.tmpData[index].statiomName
  717. : this.tmpData[index].statiomName,
  718. showy: true,
  719. dateTime: dateTime,
  720. value: dateValue,
  721. maxvalue: maxValue,
  722. minvalue: minValue,
  723. avgvalue: avgValue,
  724. };
  725. } else {
  726. option = {
  727. name: this.tmpData[index].sts,
  728. tagName:
  729. this.ined == 3
  730. ? this.tmpData[index].stse + this.tmpData[index].statiomName
  731. : this.tmpData[index].statiomName,
  732. showy: true,
  733. dateTime: "-",
  734. value: "-",
  735. maxvalue: "-",
  736. minvalue: "-",
  737. avgvalue: "-",
  738. };
  739. }
  740. this.detailsValue.push(option);
  741. });
  742. }
  743. });
  744. },
  745. // 点击查询按钮查询对比曲线
  746. searchChartData() {
  747. this.searchFlag = true;
  748. this.chartsData = [];
  749. this.detailsValue = [];
  750. if (this.ined == 1) {
  751. this.getWpPoints(this.wtid);
  752. } else if (this.ined == 2) {
  753. this.getWtPoints(this.wtid);
  754. } else if (this.ined == 3) {
  755. this.getPoints(this.tagNames);
  756. } else if (this.ined == 4) {
  757. this.getSubPoints(this.wtid);
  758. } else if (this.ined == 5) {
  759. this.getProbPoints(this.wtid);
  760. }
  761. },
  762. // 关闭弹窗事件
  763. handleClose() {
  764. this.tmpData = [];
  765. this.tagNames = "";
  766. this.searchFlag = false;
  767. this.changeYset = false;
  768. this.tagDatas = [];
  769. this.chartsData = [];
  770. this.detailsValue = [];
  771. this.starttime = new Date(new Date().setHours(0, 0, 0, 0));
  772. this.endtime = new Date();
  773. this.numgap = 900;
  774. },
  775. },
  776. mounted() {},
  777. computed: {},
  778. };
  779. </script>
  780. <style lang="less" scoped>
  781. .footerButton {
  782. justify-content: right;
  783. .el-button:first-child {
  784. width: 108px;
  785. background-color: rgba(0, 70, 199, 0.2) !important;
  786. color: #b3b3b3;
  787. border-color: transparent;
  788. }
  789. .el-button:last-of-type {
  790. width: 108px;
  791. background: rgba(0, 70, 199, 0.4) !important;
  792. }
  793. }
  794. .checkIcon {
  795. position: absolute;
  796. left: 45px;
  797. top: 8px;
  798. font-size: 20px;
  799. color: #929396;
  800. }
  801. .searchColor {
  802. background: rgba(0, 70, 199, 0.4);
  803. color: #b3b3b3;
  804. font-size: 14px;
  805. border: none;
  806. width: 108px;
  807. min-height: 25px !important;
  808. &:hover {
  809. background-color: rgba(0, 70, 199, 0.5);
  810. color: #ffffff;
  811. }
  812. }
  813. .qushi-form {
  814. flex: 0 0 auto;
  815. display: flex;
  816. align-items: center;
  817. .station {
  818. display: flex;
  819. flex-direction: row;
  820. align-items: center;
  821. font-size: 14px;
  822. font-family: Microsoft YaHei;
  823. font-weight: 400;
  824. color: #b3b3b3;
  825. margin-left: 40px;
  826. /deep/ .el-input__suffix {
  827. right: -68px;
  828. }
  829. /deep/ .el-input__prefix {
  830. left: 0;
  831. }
  832. /deep/ .el-input__inner {
  833. width: 190px;
  834. }
  835. .el-input-number {
  836. width: 190px;
  837. /deep/ .el-input-number__decrease,
  838. /deep/ .el-input-number__increase {
  839. position: absolute;
  840. z-index: 10;
  841. border: 0;
  842. height: 25px;
  843. line-height: 25px;
  844. top: 5px;
  845. }
  846. }
  847. }
  848. }
  849. .qushi-tools {
  850. flex: 1;
  851. display: flex;
  852. justify-content: flex-end;
  853. .customColor {
  854. border-radius: 0 !important;
  855. background: url("../../assets/imgs/buttonBack.png") no-repeat;
  856. background-position: 7px;
  857. }
  858. .updownTit {
  859. padding: 0 !important;
  860. width: 30px !important;
  861. min-height: 28px !important;
  862. border-radius: 4px;
  863. border: 1px solid rgba(225, 225, 225, 0.3) !important;
  864. border-top: 1px solid #ffffff !important;
  865. border-bottom: 0;
  866. box-shadow: 0 0 22px rgba(255, 255, 255, 0.2) inset !important;
  867. //border-image: linear-gradient(321deg, rgba(225, 225, 225,2 ), rgba(5, 187, 76, 0.5)) 1 1 !important;
  868. background: linear-gradient(
  869. 180deg,
  870. rgba(255, 255, 255, 0.5),
  871. rgba(0, 0, 0, 0.5),
  872. rgba(0, 0, 0, 1)
  873. );
  874. }
  875. }
  876. </style>