1
0

zhzb.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720
  1. <template>
  2. <HeaderNav @typeFlag="typeFlag" :isAll="true" />
  3. <div class="synthesizeTargetSystem">
  4. <div class="systemData bodys">
  5. <div class="line">
  6. <div class="leftContent"><span>数据指标</span></div>
  7. <div class="rightContent">
  8. <div class="more" @click="addTargets"><i>+</i>更多指标</div>
  9. </div>
  10. </div>
  11. <el-table
  12. ref="table"
  13. :data="stationData"
  14. :cell-style="cellStyle"
  15. :header-cell-style="headerStyle"
  16. height="calc(100% - 60px)"
  17. style="width: 100%"
  18. fit
  19. v-loading="loading"
  20. element-loading-text="加载中..."
  21. element-loading-background="rgba(4, 12, 11, 0.8)"
  22. empty-text=" "
  23. v-if="tableShow"
  24. stripe
  25. >
  26. <el-table-column
  27. type="index"
  28. label="序号"
  29. align="center"
  30. fixed
  31. width="60"
  32. >
  33. </el-table-column>
  34. <el-table-column
  35. v-for="(item, index) in uniformDetial"
  36. :key="index"
  37. :prop="item.uniformCode"
  38. sortable
  39. align="center"
  40. header-align="center"
  41. :resizable="true"
  42. :min-width="item.width"
  43. :fixed="index < 2"
  44. >
  45. <!-- <template v-slot="scope" v-if="cilent == 'click'">
  46. <el-tag @click="v(item.uniformCode, scope.$index, item.name)">
  47. {{ scope.row[`${item.uniformCode}`] }}
  48. </el-tag>
  49. </template> -->
  50. <template v-slot="scope">
  51. <!-- 名称 容量无曲线 -->
  52. <el-tag v-if="index < 2">
  53. {{ scope.row[`${item.uniformCode}`] }}
  54. </el-tag>
  55. <el-tag
  56. v-else
  57. @contextmenu="v(item.uniformCode, scope.$index, item.name)"
  58. >
  59. {{ scope.row[`${item.uniformCode}`] }}
  60. </el-tag>
  61. </template>
  62. <template #header>
  63. <div v-if="item.name.length > 6">
  64. {{ item.name }}
  65. <span v-if="item.valueUnit">({{ item.valueUnit }})</span>
  66. </div>
  67. <div v-else>
  68. <div>{{ item.name }}</div>
  69. <div v-if="item.valueUnit">({{ item.valueUnit }})</div>
  70. </div>
  71. </template>
  72. </el-table-column>
  73. </el-table>
  74. <dialog-check
  75. :tagCode="tagCode"
  76. :changeWid="changeWid"
  77. :changeSer="changeSer"
  78. :changeAll="changeAll"
  79. :indexes="indexes"
  80. :tableData="newTableList"
  81. :tagName="tagName"
  82. :xs="xs"
  83. :ys="ys"
  84. :NameCode="CZMC"
  85. :visible="visible"
  86. v-on:tag="z($event)"
  87. :tag1="CZAMC"
  88. :tag2="ZJRL"
  89. ></dialog-check>
  90. </div>
  91. <zbDialog
  92. ref="zbdialog"
  93. :uniformName="alluniformName"
  94. :showname="showname"
  95. :uniformCode="alluniformCode"
  96. @tableRefresh="tableRefresh"
  97. />
  98. </div>
  99. </template>
  100. <script>
  101. import dialogCheck from "@/components/qushi/dialogCheck.vue";
  102. import zbDialog from "@/components/zbDialog/index.vue";
  103. import { getComprehensiveList } from "@/api/monitor/index.js";
  104. import HeaderNav from "@/components/headerNavSta/index.vue";
  105. import { getNewObj, deepClone } from "@/utills/func.js";
  106. export default {
  107. components: {
  108. HeaderNav,
  109. dialogCheck,
  110. zbDialog,
  111. },
  112. data() {
  113. return {
  114. showname: "选择指标",
  115. newTableList: [], //处理过的tableData
  116. changeAll: false,
  117. loading: false,
  118. CZMC: "CZMC",
  119. CZAMC: "CZAMC",
  120. ZJRL: "ZJRL",
  121. tagCode: "",
  122. indexes: "",
  123. tagName: "",
  124. color: [
  125. "#1985de",
  126. "#ff8300",
  127. "#06a746",
  128. "#3eede7",
  129. "#eb0f7c",
  130. "#dfdc0a",
  131. "#de0feb",
  132. "#cca4e3",
  133. ],
  134. stse: [],
  135. sts: [],
  136. statiomName: [],
  137. stationTit: null,
  138. leng: "",
  139. stationType: null,
  140. companyCode: null,
  141. uniformDetial: [],
  142. uniformDetials: [],
  143. codeValur: null,
  144. stationData: null,
  145. checkList: [],
  146. moreTargetData: [],
  147. tableData: [],
  148. timer: "",
  149. x: 500,
  150. y: 250,
  151. dragging: false,
  152. currentX: 50,
  153. currentY: 0,
  154. initialX: 0,
  155. initialY: 0,
  156. tableShow: true,
  157. tmpData: [],
  158. detailsValue: [],
  159. starttime: "",
  160. endtime: "",
  161. numgap: 900,
  162. intervalgap: 7,
  163. units: [],
  164. unitDatas: [{ flag: false, min: 0, max: 0, codex: 0 }],
  165. tagDatas: [],
  166. handleSwitch: false,
  167. chartsData: [],
  168. chartsDataAll: [],
  169. dialogCurveVisible: false,
  170. chartName: "趋势曲线",
  171. ysetDialogVisible: false,
  172. ysetName: "Y坐标设置",
  173. visible: false,
  174. xs: "",
  175. visibles: "",
  176. ys: "",
  177. dete: "",
  178. cilent: "",
  179. tableDatas: [],
  180. pageNow: 1,
  181. pageSize: 25,
  182. stationDatasd: [],
  183. changeSer: false,
  184. changeWid: false,
  185. activeTab: "fc",
  186. tabIndex: -1,
  187. enterpriseIndex: "all",
  188. targets: "",
  189. };
  190. },
  191. created() {
  192. this.loading = true;
  193. let localAllTargets = window.localStorage.getItem("alllocalData");
  194. // 判断本地是否有指标
  195. if (localAllTargets != null && JSON.stringify(localAllTargets) != "{}") {
  196. localAllTargets = JSON.parse(localAllTargets);
  197. if (localAllTargets[1].valueUnit == "kW") {
  198. localStorage.removeItem("alllocalData");
  199. this.uniformDetial = Array.from(
  200. new Set([
  201. {
  202. name: "场站名称",
  203. uniformCode: "CZMC",
  204. valueUnit: "",
  205. width: "120",
  206. },
  207. {
  208. name: "装机容量",
  209. uniformCode: "ZJRL",
  210. valueUnit: "MW",
  211. width: "80",
  212. },
  213. ...localAllTargets.filter(
  214. (i) =>
  215. i.valueUnit != "kW" &&
  216. i.name != "装机容量" &&
  217. i.name != "场站名称"
  218. ),
  219. ])
  220. );
  221. window.localStorage.setItem(
  222. "alllocalData",
  223. JSON.stringify(this.uniformDetial)
  224. );
  225. } else {
  226. this.uniformDetial = localAllTargets;
  227. }
  228. } else {
  229. this.uniformDetial = [
  230. { name: "场站名称", uniformCode: "CZMC", valueUnit: "", width: "120" },
  231. { name: "装机容量", uniformCode: "ZJRL", valueUnit: "MW", width: "80" },
  232. {
  233. name: "日限电停机损失电量",
  234. valueUnit: null,
  235. uniformCode: "RXDTJSSDL",
  236. width: "150",
  237. },
  238. {
  239. name: "15分钟自耗电",
  240. valueUnit: null,
  241. uniformCode: "ZHD15",
  242. width: "150",
  243. },
  244. {
  245. name: "15分钟检修损失电量",
  246. valueUnit: null,
  247. uniformCode: "JXSSDL15",
  248. width: "150",
  249. },
  250. {
  251. name: "月限电停机损失电量",
  252. valueUnit: null,
  253. uniformCode: "YXDTJSSDL",
  254. width: "150",
  255. },
  256. ];
  257. window.localStorage.setItem(
  258. "alllocalData",
  259. JSON.stringify(this.uniformDetial)
  260. );
  261. }
  262. // this.$nextTick(() => this.firstRender());
  263. },
  264. mounted() {
  265. this.timer = setInterval(() => {
  266. this.firstRender();
  267. }, 5000);
  268. },
  269. unmounted() {
  270. clearInterval(this.timer);
  271. this.timer = null;
  272. },
  273. methods: {
  274. getNewObj,
  275. deepClone,
  276. // 头部tab选择
  277. typeFlag(activeTab, enterpriseIndex) {
  278. this.activeTab = activeTab;
  279. this.tabIndex = activeTab == "all" ? 0 : activeTab == "fc" ? -1 : -2;
  280. this.enterpriseIndex = enterpriseIndex;
  281. this.$nextTick(() => this.firstRender());
  282. },
  283. // 查询数据
  284. async firstRender() {
  285. //获取table数据
  286. const { data } = await getComprehensiveList({
  287. company:
  288. this.enterpriseIndex == "all" ? "0" : this.enterpriseIndex.toString(),
  289. type: this.tabIndex.toString(),
  290. targets: this.alluniformCode,
  291. });
  292. this.getTableDatas(data.data);
  293. },
  294. // 处理列表数据
  295. getTableDatas(list) {
  296. let tableData = this.deepClone(list);
  297. let newList = [];
  298. let newList1 = [];
  299. let a = this.alluniformCode.split(",");
  300. tableData.forEach((item) => {
  301. let b = [];
  302. let c = [];
  303. if (item.dataList.length) {
  304. item.dataList.forEach((subItem, subIndex) => {
  305. b.push(subItem.pointValueInDouble.toFixed(2));
  306. c.push(subItem.pointName);
  307. });
  308. }
  309. newList1.push({
  310. CZMC: item.wpname,
  311. ZJRL: item.capacity / 1000,
  312. ...this.getNewObj(a, c),
  313. });
  314. newList.push({
  315. CZMC: item.wpname,
  316. ZJRL: item.capacity / 1000,
  317. ...this.getNewObj(a, b),
  318. });
  319. });
  320. this.newTableList = newList1;
  321. this.stationData = newList;
  322. this.loading = false;
  323. },
  324. z(s) {
  325. this.visible = s;
  326. },
  327. v(tagCode, index, tagName) {
  328. this.cilent = process.env.VUE_APP_DIALOG_POINT;
  329. this.visible = true;
  330. this.tagCode = tagCode;
  331. this.indexes = index;
  332. this.tagName = tagName;
  333. if (event.clientY > window.innerHeight - 180) {
  334. this.ys = event.clientY - 106;
  335. this.changeSer = true;
  336. this.changeAll = false;
  337. } else {
  338. this.ys = event.clientY + 16;
  339. this.changeSer = false;
  340. }
  341. if (
  342. event.clientY > window.innerHeight - 180 &&
  343. event.clientX > window.innerWidth - 100
  344. ) {
  345. this.changeWid = false;
  346. this.changeSer = false;
  347. this.changeAll = true;
  348. this.ys = event.clientY - 106;
  349. this.xs = event.clientX - 171;
  350. } else if (event.clientX > window.innerWidth - 100) {
  351. this.xs = event.clientX - 171;
  352. this.changeAll = false;
  353. this.changeWid = true;
  354. } else {
  355. this.xs = event.clientX - 1;
  356. this.changeWid = false;
  357. this.changeAll = false;
  358. }
  359. event.preventDefault();
  360. },
  361. cellStyle({ columnIndex }) {
  362. if (columnIndex > 2) {
  363. return {
  364. "font-family": "Arial",
  365. padding: "7px 0",
  366. "font-size": "13px",
  367. };
  368. } else {
  369. return {
  370. "backdrop-filter": "blur(10px)",
  371. padding: "7px 0",
  372. "font-size": "13px",
  373. };
  374. }
  375. },
  376. headerStyle({ columnIndex }) {
  377. if (columnIndex < 3) {
  378. return { "backdrop-filter": "blur(10px)", padding: "6px 0" };
  379. } else {
  380. return { padding: "6px 0" };
  381. }
  382. },
  383. //添加指标
  384. addTargets() {
  385. if (this.stationData.length)
  386. this.$refs.zbdialog.openDialog(this.tabIndex.toString());
  387. },
  388. //更多指标--确定刷新指标,刷新数据
  389. tableRefresh(checkList, moreTargetData) {
  390. this.tableShow = false;
  391. setTimeout(() => {
  392. this.tableShow = true;
  393. }, 100);
  394. var codeDetial = [];
  395. //整理选中指标
  396. var newArr = [...new Set(checkList)];
  397. newArr.forEach((arr) => {
  398. const obj = moreTargetData.find((value) => {
  399. return arr == value.name;
  400. });
  401. if (newArr.length > 13) {
  402. obj.width = "150";
  403. } else {
  404. obj.width = "";
  405. }
  406. codeDetial.push(obj);
  407. });
  408. this.uniformDetial = [
  409. { name: "场站名称", uniformCode: "CZMC", valueUnit: "", width: "120" },
  410. {
  411. name: "装机容量",
  412. uniformCode: "ZJRL",
  413. valueUnit: "MW",
  414. width: "80",
  415. },
  416. ...codeDetial,
  417. ];
  418. window.localStorage.setItem(
  419. "alllocalData",
  420. JSON.stringify(this.uniformDetial)
  421. );
  422. //获取table数据
  423. this.firstRender();
  424. },
  425. },
  426. computed: {
  427. // 指标code字符串
  428. alluniformCode() {
  429. var arr = [];
  430. if (this.uniformDetial != null) {
  431. this.uniformDetial.forEach((item, index) => {
  432. if (index > 1) {
  433. arr.push(item.uniformCode);
  434. }
  435. });
  436. }
  437. const codeStr = arr.join(",");
  438. return codeStr;
  439. },
  440. // 指标name字符串
  441. alluniformName() {
  442. var arr = [];
  443. this.uniformDetial.forEach((item, index) => {
  444. if (index > 1) {
  445. arr.push(item.name);
  446. }
  447. });
  448. return arr;
  449. },
  450. },
  451. };
  452. </script>
  453. <style lang="less" scoped>
  454. .status {
  455. width: 100%;
  456. height: calc(100vh - 7.222vh);
  457. overflow-y: auto;
  458. display: flex;
  459. flex-direction: column;
  460. .panel-box {
  461. width: 100%;
  462. display: flex;
  463. flex-direction: row;
  464. flex-wrap: wrap;
  465. height: 54vh;
  466. overflow-y: auto;
  467. .panel-item {
  468. width: calc(20% - 1.185vh);
  469. margin-left: 1.481vh;
  470. margin-bottom: 1.481vh;
  471. &:nth-child(5n + 1) {
  472. margin-left: 0;
  473. }
  474. }
  475. }
  476. .table-box {
  477. border: 0.093vh solid @darkgray;
  478. position: relative;
  479. overflow: auto;
  480. flex-grow: 1;
  481. &::after,
  482. &::before {
  483. content: "";
  484. position: absolute;
  485. width: 0.185vh;
  486. height: 0.185vh;
  487. background-color: @write;
  488. top: 0.37vh;
  489. }
  490. &::after {
  491. left: 0.37vh;
  492. }
  493. &::before {
  494. right: 0.37vh;
  495. }
  496. }
  497. .table-box1 {
  498. border: 0.093vh solid @darkgray;
  499. position: relative;
  500. overflow: auto;
  501. flex-grow: 1;
  502. &::after,
  503. &::before {
  504. content: "";
  505. position: absolute;
  506. width: 0.185vh;
  507. height: 0.185vh;
  508. background-color: @write;
  509. top: 0.37vh;
  510. }
  511. &::after {
  512. left: 0.37vh;
  513. }
  514. &::before {
  515. right: 0.37vh;
  516. }
  517. }
  518. }
  519. .search-input {
  520. margin-left: 10px;
  521. /deep/ .el-input__suffix {
  522. position: absolute;
  523. height: 100%;
  524. right: -65px;
  525. }
  526. }
  527. .customColor {
  528. background: linear-gradient(
  529. 180deg,
  530. rgba(255, 255, 255, 0.4),
  531. rgba(255, 255, 255, 0.27)
  532. ) !important;
  533. }
  534. .searchColor {
  535. background-color: rgba(0, 70, 199, 0.2);
  536. border: 1px solid #3b4c6c;
  537. color: #b3b3b3;
  538. font-size: 14px;
  539. &:hover {
  540. background-color: rgba(0, 70, 199, 0.5);
  541. color: #ffffff;
  542. }
  543. }
  544. .el-popper.is-light {
  545. background: #1a7ccd;
  546. }
  547. .el-dropdown-item {
  548. background: red !important;
  549. }
  550. .example-showcase .el-dropdown-link {
  551. cursor: pointer;
  552. color: var(--el-color-primary);
  553. display: flex;
  554. align-items: center;
  555. }
  556. .synthesizeTargetSystem {
  557. padding: 0 20px;
  558. height: calc(100% - 59px);
  559. }
  560. .systemData {
  561. width: 100%;
  562. height: 100%;
  563. background-color: rgba(0, 0, 0, 0.45);
  564. padding: 5px;
  565. //overflow: hidden;
  566. overflow-y: auto;
  567. .font {
  568. font-family: "Arial" !important;
  569. }
  570. }
  571. .headerNav {
  572. margin-bottom: 15px;
  573. }
  574. .footerButton {
  575. justify-content: right;
  576. .el-button:first-child {
  577. background-color: rgba(0, 70, 199, 0.2) !important;
  578. color: #b3b3b3;
  579. border-color: transparent;
  580. }
  581. }
  582. .count {
  583. color: #fff;
  584. }
  585. .el-checkbox {
  586. width: 180px;
  587. }
  588. .line {
  589. display: flex;
  590. flex-direction: row;
  591. align-items: center;
  592. justify-content: space-between;
  593. width: 100%;
  594. margin-bottom: 5px;
  595. .leftContent {
  596. width: 242px;
  597. height: 41px;
  598. display: flex;
  599. align-items: center;
  600. background: url("~@/assets/imgs/title_left_bg1.png") no-repeat;
  601. span {
  602. font-size: 16px;
  603. font-family: Microsoft YaHei;
  604. font-weight: 400;
  605. color: #05bb4c;
  606. margin-left: 25px;
  607. }
  608. }
  609. .rightContent {
  610. position: relative;
  611. width: 212px;
  612. height: 28px;
  613. margin-top: 13px;
  614. // background: url("../../../assets/imgs/title_right_bg.png");
  615. .more {
  616. float: right;
  617. width: 134px;
  618. height: 28px;
  619. line-height: 28px;
  620. text-align: center;
  621. color: #b3b3b3;
  622. font-size: 14px;
  623. cursor: pointer;
  624. background: url("../../../assets/imgs/buttonBack.png") no-repeat;
  625. background-size: cover;
  626. i {
  627. font-size: 18px;
  628. margin-right: 5px;
  629. vertical-align: -1%;
  630. }
  631. }
  632. }
  633. }
  634. .el-tag {
  635. background: none !important;
  636. border: none !important;
  637. color: #d8d8d9;
  638. cursor: pointer;
  639. }
  640. .el-tag:hover {
  641. color: #05bb4c;
  642. }
  643. .ststTit {
  644. width: 96%;
  645. height: 50px;
  646. color: #05bb4c;
  647. font-size: 16px;
  648. background: rgb(12, 15, 21);
  649. line-height: 50px;
  650. border-bottom: 1px solid #323b3c;
  651. box-sizing: border-box;
  652. padding-left: 10px;
  653. margin: 0 10px;
  654. }
  655. .overHidd {
  656. margin-top: 12px;
  657. overflow: scroll;
  658. height: 62%;
  659. }
  660. .stations {
  661. height: 40px;
  662. line-height: 40px;
  663. width: 97%;
  664. display: flex;
  665. justify-content: space-between;
  666. font-size: 15px;
  667. margin-left: 10px;
  668. padding-right: 10px;
  669. padding-left: 10px;
  670. border-radius: 4px;
  671. }
  672. .stations:hover {
  673. background: rgba(0, 70, 199, 0.2);
  674. }
  675. .header {
  676. cursor: move;
  677. }
  678. </style>