zhzb.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788
  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="index < 1 ? 'center' : 'right'"
  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. this.getUniformCodes();
  194. // let localAllTargets = window.localStorage.getItem("alllocalData");
  195. // 判断本地是否有指标
  196. // if (localAllTargets != null && JSON.stringify(localAllTargets) != "{}") {
  197. // localAllTargets = JSON.parse(localAllTargets);
  198. // if (localAllTargets[1].valueUnit == "kW") {
  199. // localStorage.removeItem("alllocalData");
  200. // this.uniformDetial = Array.from(
  201. // new Set([
  202. // {
  203. // name: "场站名称",
  204. // uniformCode: "CZMC",
  205. // valueUnit: "",
  206. // width: "120",
  207. // },
  208. // {
  209. // name: "装机容量",
  210. // uniformCode: "ZJRL",
  211. // valueUnit: "MW",
  212. // width: "80",
  213. // },
  214. // ...localAllTargets.filter(
  215. // (i) =>
  216. // i.valueUnit != "kW" &&
  217. // i.name != "装机容量" &&
  218. // i.name != "场站名称"
  219. // ),
  220. // ])
  221. // );
  222. // window.localStorage.setItem(
  223. // "alllocalData",
  224. // JSON.stringify(this.uniformDetial)
  225. // );
  226. // } else {
  227. // this.uniformDetial = localAllTargets;
  228. // }
  229. // } else {
  230. // window.localStorage.setItem(
  231. // "alllocalData",
  232. // JSON.stringify(this.uniformDetial)
  233. // );
  234. // }
  235. // this.$nextTick(() => this.firstRender());
  236. },
  237. mounted() {
  238. this.timer = setInterval(() => {
  239. this.firstRender();
  240. }, 5000);
  241. },
  242. unmounted() {
  243. clearInterval(this.timer);
  244. this.timer = null;
  245. },
  246. methods: {
  247. getNewObj,
  248. deepClone,
  249. // 头部tab选择
  250. typeFlag(activeTab, enterpriseIndex) {
  251. this.activeTab = activeTab;
  252. this.tabIndex = activeTab == "all" ? 0 : activeTab == "fc" ? -1 : -2;
  253. this.getUniformCodes();
  254. this.enterpriseIndex = enterpriseIndex;
  255. this.$nextTick(() => this.firstRender());
  256. },
  257. getUniformCodes() {
  258. if (this.tabIndex == -1) {
  259. this.uniformDetial = [
  260. {
  261. name: "场站名称",
  262. uniformCode: "CZMC",
  263. valueUnit: "",
  264. width: "120",
  265. },
  266. {
  267. name: "装机容量",
  268. uniformCode: "ZJRL",
  269. valueUnit: "MW",
  270. width: "80",
  271. },
  272. {
  273. name: "日发电量",
  274. valueUnit: "万kWh",
  275. uniformCode: "RFDL",
  276. width: "150",
  277. },
  278. {
  279. name: "月发电量",
  280. valueUnit: "万kWh",
  281. uniformCode: "YFDL",
  282. width: "150",
  283. },
  284. {
  285. name: "年发电量",
  286. valueUnit: "万kWh",
  287. uniformCode: "NFDL",
  288. width: "150",
  289. },
  290. {
  291. name: "实时总功率",
  292. valueUnit: "MW",
  293. uniformCode: "SSZGL",
  294. width: "150",
  295. },
  296. {
  297. name: "实时平均风速",
  298. valueUnit: "m/s",
  299. uniformCode: "SSPJFS",
  300. width: "150",
  301. },
  302. ];
  303. } else if (this.tabIndex == -2) {
  304. this.uniformDetial = [
  305. {
  306. name: "场站名称",
  307. uniformCode: "CZMC",
  308. valueUnit: "",
  309. width: "120",
  310. },
  311. {
  312. name: "装机容量",
  313. uniformCode: "ZJRL",
  314. valueUnit: "MW",
  315. width: "80",
  316. },
  317. {
  318. name: "日发电量",
  319. valueUnit: "万kWh",
  320. uniformCode: "RFDL",
  321. width: "150",
  322. },
  323. {
  324. name: "月发电量",
  325. valueUnit: "万kWh",
  326. uniformCode: "YFDL",
  327. width: "150",
  328. },
  329. {
  330. name: "年发电量",
  331. valueUnit: "万kWh",
  332. uniformCode: "NFDL",
  333. width: "150",
  334. },
  335. {
  336. name: "实时总功率",
  337. valueUnit: "MW",
  338. uniformCode: "SSZGL",
  339. width: "150",
  340. },
  341. {
  342. name: "实时平均光照度",
  343. valueUnit: "W/m²",
  344. uniformCode: "SSPJGZD",
  345. width: "150",
  346. },
  347. ];
  348. }
  349. },
  350. // 查询数据
  351. async firstRender() {
  352. //获取table数据
  353. const { data } = await getComprehensiveList({
  354. company:
  355. this.enterpriseIndex == "all" ? "0" : this.enterpriseIndex.toString(),
  356. type: this.tabIndex.toString(),
  357. targets: this.alluniformCode,
  358. });
  359. this.getTableDatas(data.data);
  360. },
  361. // 处理列表数据
  362. getTableDatas(list) {
  363. let tableData = this.deepClone(list);
  364. let newList = [];
  365. let newList1 = [];
  366. let a = this.alluniformCode.split(",");
  367. tableData.forEach((item) => {
  368. let b = [];
  369. let c = [];
  370. if (item.dataList.length) {
  371. item.dataList.forEach((subItem, subIndex) => {
  372. b.push(subItem.pointValueInDouble.toFixed(2));
  373. c.push(subItem.pointName);
  374. });
  375. }
  376. newList1.push({
  377. CZMC: item.wpname,
  378. ZJRL: item.capacity / 1000,
  379. ...this.getNewObj(a, c),
  380. });
  381. newList.push({
  382. CZMC: item.wpname,
  383. ZJRL: item.capacity / 1000,
  384. ...this.getNewObj(a, b),
  385. });
  386. });
  387. this.newTableList = newList1;
  388. this.stationData = newList;
  389. this.loading = false;
  390. },
  391. z(s) {
  392. this.visible = s;
  393. },
  394. v(tagCode, index, tagName) {
  395. this.cilent = process.env.VUE_APP_DIALOG_POINT;
  396. this.visible = true;
  397. this.tagCode = tagCode;
  398. this.indexes = index;
  399. this.tagName = tagName;
  400. if (event.clientY > window.innerHeight - 180) {
  401. this.ys = event.clientY - 106;
  402. this.changeSer = true;
  403. this.changeAll = false;
  404. } else {
  405. this.ys = event.clientY + 16;
  406. this.changeSer = false;
  407. }
  408. if (
  409. event.clientY > window.innerHeight - 180 &&
  410. event.clientX > window.innerWidth - 100
  411. ) {
  412. this.changeWid = false;
  413. this.changeSer = false;
  414. this.changeAll = true;
  415. this.ys = event.clientY - 106;
  416. this.xs = event.clientX - 171;
  417. } else if (event.clientX > window.innerWidth - 100) {
  418. this.xs = event.clientX - 171;
  419. this.changeAll = false;
  420. this.changeWid = true;
  421. } else {
  422. this.xs = event.clientX - 1;
  423. this.changeWid = false;
  424. this.changeAll = false;
  425. }
  426. event.preventDefault();
  427. },
  428. cellStyle({ columnIndex }) {
  429. if (columnIndex > 2) {
  430. return {
  431. "font-family": "Arial",
  432. padding: "7px 0",
  433. "font-size": "13px",
  434. };
  435. } else {
  436. return {
  437. "backdrop-filter": "blur(10px)",
  438. padding: "7px 0",
  439. "font-size": "13px",
  440. };
  441. }
  442. },
  443. headerStyle({ columnIndex }) {
  444. if (columnIndex < 3) {
  445. return { "backdrop-filter": "blur(10px)", padding: "6px 0" };
  446. } else {
  447. return { padding: "6px 0" };
  448. }
  449. },
  450. //添加指标
  451. addTargets() {
  452. if (this.stationData.length)
  453. this.$refs.zbdialog.openDialog(this.tabIndex.toString());
  454. },
  455. //更多指标--确定刷新指标,刷新数据
  456. tableRefresh(checkList, moreTargetData) {
  457. this.tableShow = false;
  458. setTimeout(() => {
  459. this.tableShow = true;
  460. }, 100);
  461. var codeDetial = [];
  462. //整理选中指标
  463. var newArr = [...new Set(checkList)];
  464. newArr.forEach((arr) => {
  465. const obj = moreTargetData.find((value) => {
  466. return arr == value.name;
  467. });
  468. if (newArr.length > 13) {
  469. obj.width = "150";
  470. } else {
  471. obj.width = "";
  472. }
  473. codeDetial.push(obj);
  474. });
  475. this.uniformDetial = [
  476. { name: "场站名称", uniformCode: "CZMC", valueUnit: "", width: "120" },
  477. {
  478. name: "装机容量",
  479. uniformCode: "ZJRL",
  480. valueUnit: "MW",
  481. width: "80",
  482. },
  483. ...codeDetial,
  484. ];
  485. // window.localStorage.setItem(
  486. // "alllocalData",
  487. // JSON.stringify(this.uniformDetial)
  488. // );
  489. //获取table数据
  490. this.firstRender();
  491. },
  492. },
  493. computed: {
  494. // 指标code字符串
  495. alluniformCode() {
  496. var arr = [];
  497. if (this.uniformDetial != null) {
  498. this.uniformDetial.forEach((item, index) => {
  499. if (index > 1) {
  500. arr.push(item.uniformCode);
  501. }
  502. });
  503. }
  504. const codeStr = arr.join(",");
  505. return codeStr;
  506. },
  507. // 指标name字符串
  508. alluniformName() {
  509. var arr = [];
  510. this.uniformDetial.forEach((item, index) => {
  511. if (index > 1) {
  512. arr.push(item.name);
  513. }
  514. });
  515. return arr;
  516. },
  517. },
  518. };
  519. </script>
  520. <style lang="less" scoped>
  521. // .status {
  522. // width: 100%;
  523. // height: calc(100vh - 7.222vh);
  524. // overflow-y: auto;
  525. // display: flex;
  526. // flex-direction: column;
  527. // .panel-box {
  528. // width: 100%;
  529. // display: flex;
  530. // flex-direction: row;
  531. // flex-wrap: wrap;
  532. // height: 54vh;
  533. // overflow-y: auto;
  534. // .panel-item {
  535. // width: calc(20% - 1.185vh);
  536. // margin-left: 1.481vh;
  537. // margin-bottom: 1.481vh;
  538. // &:nth-child(5n + 1) {
  539. // margin-left: 0;
  540. // }
  541. // }
  542. // }
  543. // .table-box {
  544. // border: 0.093vh solid @darkgray;
  545. // position: relative;
  546. // overflow: auto;
  547. // flex-grow: 1;
  548. // &::after,
  549. // &::before {
  550. // content: "";
  551. // position: absolute;
  552. // width: 0.185vh;
  553. // height: 0.185vh;
  554. // background-color: @write;
  555. // top: 0.37vh;
  556. // }
  557. // &::after {
  558. // left: 0.37vh;
  559. // }
  560. // &::before {
  561. // right: 0.37vh;
  562. // }
  563. // }
  564. // .table-box1 {
  565. // border: 0.093vh solid @darkgray;
  566. // position: relative;
  567. // overflow: auto;
  568. // flex-grow: 1;
  569. // &::after,
  570. // &::before {
  571. // content: "";
  572. // position: absolute;
  573. // width: 0.185vh;
  574. // height: 0.185vh;
  575. // background-color: @write;
  576. // top: 0.37vh;
  577. // }
  578. // &::after {
  579. // left: 0.37vh;
  580. // }
  581. // &::before {
  582. // right: 0.37vh;
  583. // }
  584. // }
  585. // }
  586. .search-input {
  587. margin-left: 10px;
  588. /deep/ .el-input__suffix {
  589. position: absolute;
  590. height: 100%;
  591. right: -65px;
  592. }
  593. }
  594. .customColor {
  595. background: linear-gradient(
  596. 180deg,
  597. rgba(255, 255, 255, 0.4),
  598. rgba(255, 255, 255, 0.27)
  599. ) !important;
  600. }
  601. .searchColor {
  602. background-color: rgba(0, 70, 199, 0.2);
  603. border: 1px solid #3b4c6c;
  604. color: #b3b3b3;
  605. font-size: 14px;
  606. &:hover {
  607. background-color: rgba(0, 70, 199, 0.5);
  608. color: #ffffff;
  609. }
  610. }
  611. .el-popper.is-light {
  612. background: #1a7ccd;
  613. }
  614. .el-dropdown-item {
  615. background: red !important;
  616. }
  617. .example-showcase .el-dropdown-link {
  618. cursor: pointer;
  619. color: var(--el-color-primary);
  620. display: flex;
  621. align-items: center;
  622. }
  623. .synthesizeTargetSystem {
  624. padding: 0 20px;
  625. height: calc(100% - 59px);
  626. }
  627. .systemData {
  628. width: 100%;
  629. height: 100%;
  630. background-color: rgba(0, 0, 0, 0.45);
  631. padding: 5px;
  632. //overflow: hidden;
  633. overflow-y: auto;
  634. .font {
  635. font-family: "Arial" !important;
  636. }
  637. }
  638. .headerNav {
  639. margin-bottom: 15px;
  640. }
  641. .footerButton {
  642. justify-content: right;
  643. .el-button:first-child {
  644. background-color: rgba(0, 70, 199, 0.2) !important;
  645. color: #b3b3b3;
  646. border-color: transparent;
  647. }
  648. }
  649. .count {
  650. color: #fff;
  651. }
  652. .el-checkbox {
  653. width: 180px;
  654. }
  655. .line {
  656. display: flex;
  657. flex-direction: row;
  658. align-items: center;
  659. justify-content: space-between;
  660. width: 100%;
  661. margin-bottom: 5px;
  662. .leftContent {
  663. width: 242px;
  664. height: 41px;
  665. display: flex;
  666. align-items: center;
  667. background: url("~@/assets/imgs/title_left_bg1.png") no-repeat;
  668. span {
  669. font-size: 16px;
  670. font-family: Microsoft YaHei;
  671. font-weight: 400;
  672. color: #05bb4c;
  673. margin-left: 25px;
  674. }
  675. }
  676. .rightContent {
  677. position: relative;
  678. width: 212px;
  679. height: 28px;
  680. margin-top: 13px;
  681. // background: url("../../../assets/imgs/title_right_bg.png");
  682. .more {
  683. float: right;
  684. width: 134px;
  685. height: 28px;
  686. line-height: 28px;
  687. text-align: center;
  688. color: #b3b3b3;
  689. font-size: 14px;
  690. cursor: pointer;
  691. background: url("../../../assets/imgs/buttonBack.png") no-repeat;
  692. background-size: cover;
  693. i {
  694. font-size: 18px;
  695. margin-right: 5px;
  696. vertical-align: -1%;
  697. }
  698. }
  699. }
  700. }
  701. .el-tag {
  702. background: none !important;
  703. border: none !important;
  704. color: #d8d8d9;
  705. cursor: pointer;
  706. }
  707. .el-tag:hover {
  708. color: #05bb4c;
  709. }
  710. .ststTit {
  711. width: 96%;
  712. height: 50px;
  713. color: #05bb4c;
  714. font-size: 16px;
  715. background: rgb(12, 15, 21);
  716. line-height: 50px;
  717. border-bottom: 1px solid #323b3c;
  718. box-sizing: border-box;
  719. padding-left: 10px;
  720. margin: 0 10px;
  721. }
  722. .overHidd {
  723. margin-top: 12px;
  724. overflow: scroll;
  725. height: 62%;
  726. }
  727. .stations {
  728. height: 40px;
  729. line-height: 40px;
  730. width: 97%;
  731. display: flex;
  732. justify-content: space-between;
  733. font-size: 15px;
  734. margin-left: 10px;
  735. padding-right: 10px;
  736. padding-left: 10px;
  737. border-radius: 4px;
  738. }
  739. .stations:hover {
  740. background: rgba(0, 70, 199, 0.2);
  741. }
  742. .header {
  743. cursor: move;
  744. }
  745. </style>