Decision1.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578
  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="value1"
  10. @change="ChangZhanChange(value1)"
  11. clearable
  12. placeholder="请选择"
  13. popper-class="select"
  14. >
  15. <el-option
  16. v-for="item in ChangZhan"
  17. :key="item.id"
  18. :value="item.id"
  19. :label="item.name"
  20. >
  21. </el-option>
  22. </el-select>
  23. </div>
  24. </div>
  25. <div class="query-item">
  26. <div class="lable">项目:</div>
  27. <div class="search-input">
  28. <el-select
  29. v-model="value2"
  30. @change="XiangMuChange(value2)"
  31. multiple
  32. placeholder="请选择"
  33. popper-class="select"
  34. >
  35. <el-option
  36. v-for="item in XiangMu"
  37. :key="item.id"
  38. :value="item.id"
  39. :label="item.name"
  40. >
  41. </el-option>
  42. </el-select>
  43. </div>
  44. </div>
  45. <div class="query-item">
  46. <div class="lable">线路:</div>
  47. <div class="search-input">
  48. <el-select
  49. v-model="value3"
  50. @change="XianLuChange(value3)"
  51. multiple
  52. placeholder="请选择"
  53. popper-class="select"
  54. >
  55. <el-option
  56. v-for="item in XianLu"
  57. :key="item.id"
  58. :label="item.name"
  59. :value="item.id"
  60. >
  61. </el-option>
  62. </el-select>
  63. </div>
  64. </div>
  65. <div class="query-item">
  66. <div class="lable">开始日期:</div>
  67. <div class="search-input">
  68. <el-date-picker
  69. v-model="value4"
  70. @change="BeginChange(value4)"
  71. type="date"
  72. value-format="YYYY-MM-DD"
  73. placeholder="选择日期"
  74. popper-class="date-select"
  75. >
  76. </el-date-picker>
  77. </div>
  78. </div>
  79. <div class="query-item">
  80. <div class="lable">结束日期:</div>
  81. <div class="search-input">
  82. <el-date-picker
  83. v-model="value5"
  84. @change="EndChange(value5)"
  85. type="date"
  86. value-format="YYYY-MM-DD"
  87. placeholder="选择日期"
  88. popper-class="date-select"
  89. >
  90. </el-date-picker>
  91. <div class="unit svg-icon svg-icon-gray">
  92. <svg-icon :svgid="''" />
  93. </div>
  94. </div>
  95. </div>
  96. </div>
  97. <div class="query-actions" style="margin-left:0px">
  98. <button class="btn green">搜索</button>
  99. <button class="btn" @click="mxClick()">明细信息</button>
  100. <button class="btn" @click="exportExcel()">导出</button>
  101. </div>
  102. </div>
  103. <div class="actions mg-b-8">
  104. <button
  105. class="btn"
  106. :class="TypeClass == 1 ? 'green' : ''"
  107. @click="TypeClick(1)"
  108. >
  109. 风场
  110. </button>
  111. <button
  112. class="btn"
  113. :class="TypeClass == 2 ? 'green' : ''"
  114. @click="TypeClick(2)"
  115. >
  116. 项目
  117. </button>
  118. <button
  119. class="btn"
  120. :class="TypeClass == 3 ? 'green' : ''"
  121. @click="TypeClick(3)"
  122. >
  123. 集电线路
  124. </button>
  125. </div>
  126. <el-row :type="'flex'" class="content">
  127. <el-col :span="12" class="pd-r-8">
  128. <toolbar-panel title="风机绩效榜" :showLine="false">
  129. <bar-line-chart
  130. :height="'calc(100vh - 180px)'"
  131. :bardata="bardata"
  132. :lineData="lineData"
  133. :color="barColor"
  134. lineName="理论发电量"
  135. />
  136. </toolbar-panel>
  137. </el-col>
  138. <el-col :span="12" class="pd-l-8">
  139. <panel :title="'项目列表'" :showLine="false">
  140. <div class="project-table">
  141. <!-- 分页Table -->
  142. <Table :data="tableData" :height="'calc(80vh - 50px)'">
  143. <template v-slot:tr v-if="tableData.data.length > 0">
  144. <tr>
  145. <td style="width: 50px">
  146. {{ tableDataEnd.index }}
  147. </td>
  148. <td style="width: 150px">
  149. {{ tableDataEnd.name }}
  150. </td>
  151. <td>
  152. {{ tableDataEnd.llfdl }}
  153. </td>
  154. <td>
  155. {{ tableDataEnd.sjfdl }}
  156. </td>
  157. <td>
  158. {{ tableDataEnd.speed }}
  159. </td>
  160. <td>
  161. {{ tableDataEnd.fjhjx }}
  162. </td>
  163. <td>
  164. {{ tableDataEnd.jhjx }}
  165. </td>
  166. <td style="width: 80px">
  167. {{ tableDataEnd.sl }}
  168. </td>
  169. <td>
  170. {{ tableDataEnd.xd }}
  171. </td>
  172. <td>
  173. {{ tableDataEnd.xn }}
  174. </td>
  175. <td>
  176. {{ tableDataEnd.fnlly }}
  177. </td>
  178. </tr>
  179. </template>
  180. </Table>
  181. <!-- <Table :data="tableData"></Table> -->
  182. </div>
  183. </panel>
  184. </el-col>
  185. </el-row>
  186. </div>
  187. </template>
  188. <script>
  189. import BarLineChart from "../../components/chart/combination/bar-line-chart.vue";
  190. import Panel from "../../components/coms/panel/panel.vue";
  191. import SvgIcon from "../../components/coms/icon/svg-icon.vue";
  192. import ToolbarPanel from "../../components/coms/panel/toolbar-panel.vue";
  193. import Table from "./table.vue";
  194. import partten from "@/helper/partten.js";
  195. export default {
  196. components: {
  197. ToolbarPanel,
  198. BarLineChart,
  199. Panel,
  200. Table,
  201. partten,
  202. SvgIcon,
  203. },
  204. data() {
  205. return {
  206. tableData: {
  207. column: [
  208. {
  209. name: "",
  210. field: "index",
  211. is_num: false,
  212. is_light: false,
  213. width: "50px",
  214. },
  215. {
  216. name: "名称",
  217. field: "name",
  218. width: "150px",
  219. is_num: false,
  220. is_light: false,
  221. },
  222. {
  223. name: "理论发电量",
  224. field: "llfdl",
  225. is_num: false,
  226. is_light: false,
  227. sortable: true,
  228. },
  229. {
  230. name: "SCADA发电量",
  231. field: "sjfdl",
  232. is_num: false,
  233. is_light: false,
  234. sortable: true,
  235. },
  236. {
  237. name: "风速",
  238. field: "speed",
  239. is_num: false,
  240. is_light: false,
  241. sortable: true,
  242. },
  243. {
  244. name: "非计划检修",
  245. field: "fjhjx",
  246. is_num: false,
  247. is_light: false,
  248. sortable: true,
  249. },
  250. {
  251. name: "计划检修",
  252. field: "jhjx",
  253. is_num: false,
  254. is_light: false,
  255. sortable: true,
  256. },
  257. {
  258. name: "受累",
  259. field: "sl",
  260. width: "80px",
  261. is_num: false,
  262. is_light: false,
  263. sortable: true,
  264. },
  265. {
  266. name: "限电",
  267. field: "xd",
  268. is_num: false,
  269. is_light: false,
  270. sortable: true,
  271. },
  272. {
  273. name: "性能",
  274. field: "xn",
  275. is_num: false,
  276. is_light: false,
  277. sortable: true,
  278. },
  279. {
  280. name: "风能利用率%",
  281. field: "fnlly",
  282. is_num: false,
  283. is_light: false,
  284. sortable: true,
  285. },
  286. ],
  287. data: [],
  288. },
  289. tableDataEnd: [], //合计
  290. ChangZhan: [], //场站
  291. XiangMu: [], //项目
  292. XianLu: [], //线路
  293. value1: [],
  294. value2: [],
  295. value3: [],
  296. value4: "",
  297. value5: "",
  298. barColor: [
  299. "#4b55ae",
  300. "#e17e23",
  301. "#ba3237",
  302. "#c531c7",
  303. "#ffffff",
  304. "#05bb4c",
  305. ],
  306. TypeClass: 1, //风场,项目,集电线路 的按钮颜色,默认第一个
  307. bardata: [],
  308. lineData: [],
  309. };
  310. },
  311. created() {
  312. this.ChangZhanVal();
  313. this.value4 = this.getTime(1);
  314. this.value5 = this.getTime(2);
  315. this.AjaxCommon();
  316. },
  317. methods: {
  318. ChangZhanVal() {
  319. var that = this;
  320. that.API.requestData({
  321. method: "GET",
  322. baseURL: "http://10.155.32.4:9001/",
  323. subUrl: "benchmarking/wplist",
  324. success(res) {
  325. that.ChangZhan = res.data;
  326. },
  327. });
  328. },
  329. ChangZhanChange(val) {
  330. this.TypeClass = "";
  331. this.value1 = val;
  332. this.value2 = [];
  333. this.value3 = [];
  334. this.AjaxCommon();
  335. this.XiangMuVal(val);
  336. },
  337. XiangMuVal(val) {
  338. var that = this;
  339. that.API.requestData({
  340. method: "GET",
  341. baseURL: "http://10.155.32.4:9001/",
  342. subUrl: "benchmarking/projectList",
  343. data: {
  344. wpids: val,
  345. },
  346. success(res) {
  347. that.XiangMu = res.data;
  348. },
  349. });
  350. },
  351. XiangMuChange(val) {
  352. this.TypeClass = "";
  353. this.value2 = val;
  354. this.value3 = [];
  355. this.AjaxCommon();
  356. this.XianLuVal(val);
  357. },
  358. XianLuVal(val) {
  359. var that = this;
  360. that.API.requestData({
  361. method: "GET",
  362. baseURL: "http://10.155.32.4:9001/",
  363. subUrl: "benchmarking/lineList",
  364. data: {
  365. projects: val,
  366. },
  367. success(res) {
  368. that.XianLu = res.data;
  369. },
  370. });
  371. },
  372. XianLuChange(val) {
  373. this.TypeClass = "";
  374. this.value3 = val;
  375. this.AjaxCommon();
  376. },
  377. BeginChange(val) {
  378. this.value4 = val;
  379. this.AjaxCommon();
  380. },
  381. EndChange(val) {
  382. this.value5 = val;
  383. this.AjaxCommon();
  384. },
  385. TypeClick(val) {
  386. this.TypeClass = val;
  387. // 重置状态start
  388. this.value1 = "";
  389. this.value2 = [];
  390. this.value3 = [];
  391. this.value4 = this.getTime(1);
  392. this.value5 = this.getTime(2);
  393. this.AjaxCommon();
  394. // 重置状态end
  395. },
  396. getTime(val) {
  397. //时间戳处理,val=1是默认开始时间(当前月第一天),val=2是默认结束时间(今天)
  398. var date = new Date();
  399. var year = date.getFullYear(),
  400. month = date.getMonth() + 1,
  401. day = date.getDate();
  402. month >= 1 && month <= 9 ? (month = "0" + month) : "";
  403. day >= 0 && day <= 9 ? (day = "0" + day) : "";
  404. var begin = year + "-" + month + "-01";
  405. var end = year + "-" + month + "-" + day;
  406. if (val == 1) {
  407. return begin;
  408. } else if (val == 2) {
  409. return end;
  410. }
  411. },
  412. AjaxCommon() {
  413. var that = this;
  414. that.API.requestData({
  415. method: "GET",
  416. baseURL: "http://10.155.32.4:9001/",
  417. subUrl: "benchmarking/fjjxb",
  418. data: {
  419. wpids: that.value1,
  420. projectids: that.value2,
  421. lineids: that.value3,
  422. beginDate: that.value4,
  423. endDate: that.value5,
  424. type: that.TypeClass,
  425. target: "",
  426. sort: "",
  427. },
  428. success(res) {
  429. var name = [],
  430. data = [],
  431. llfdl = [],
  432. legend = [
  433. "实际电量",
  434. "计划检修损失",
  435. "非计划检修损失",
  436. "限电损失",
  437. "受累损失",
  438. "性能损失",
  439. ],
  440. data2 = []; //项目列表
  441. res.data.forEach((item, index) => {
  442. name.push(item.name);
  443. data.push([
  444. item.sjfdl,
  445. item.jhjx,
  446. item.fjhjx,
  447. item.xd,
  448. item.sl,
  449. item.xn,
  450. ]);
  451. llfdl.push(item.llfdl);
  452. data2.push({
  453. index: index + 1,
  454. name: item.name,
  455. llfdl: item.llfdl,
  456. sjfdl: item.sjfdl,
  457. speed: item.speed,
  458. fjhjx: item.fjhjx,
  459. jhjx: item.jhjx,
  460. sl: item.sl,
  461. xd: item.xd,
  462. xn: item.xn,
  463. fnlly: item.fnlly,
  464. is_light: false,
  465. });
  466. });
  467. name.pop();
  468. data.pop();
  469. llfdl.pop();
  470. if (data.length > 0) {
  471. let arr1 = [];
  472. const length = data[0].length;
  473. for (var i = 0; i < length; i++) {
  474. let arr2 = [];
  475. data.forEach((ele) => {
  476. arr2.push(ele[i]);
  477. });
  478. arr1.push(arr2);
  479. }
  480. that.lineData = llfdl;
  481. that.bardata = {
  482. area: name,
  483. legend: legend,
  484. data: arr1,
  485. };
  486. }
  487. that.tableDataEnd = data2[data2.length - 1];
  488. data2.pop();
  489. that.tableData.data = data2;
  490. },
  491. });
  492. },
  493. mxClick() {
  494. this.$router.push("/decision/decision1Mx");
  495. },
  496. formatJson(filterVal, jsonData) {
  497. return jsonData.map((v) => filterVal.map((j) => v[j]));
  498. },
  499. exportExcel() {
  500. let that = this;
  501. const { export_json_to_excel } = require("@tools/excel/Export2Excel.js"); // 注意这个Export2Excel路径
  502. let tHeader = []; // 上面设置Excel的表格第一行的标题
  503. let filterVal = []; // 上面的index、nickName、name是tableData里对象的属性key值
  504. that.tableData.column.forEach((ele) => {
  505. tHeader.push(ele.name);
  506. filterVal.push(ele.field);
  507. });
  508. var list = [];
  509. that.tableData.data.forEach((i, index) => {
  510. list.push(i);
  511. });
  512. list.push(that.tableDataEnd);
  513. const data = that.formatJson(filterVal, list);
  514. export_json_to_excel(tHeader, data, "导出的Excel"); // 最后一个是表名字
  515. },
  516. },
  517. };
  518. </script>
  519. <style lang="less">
  520. .decision-page-1 {
  521. .com-panel .panel-title {
  522. line-height: 3.4259vh;
  523. }
  524. .tools {
  525. display: flex;
  526. line-height: 3.4259vh;
  527. .tool-block {
  528. display: flex;
  529. align-items: center;
  530. margin-left: 0.741vh;
  531. .legend {
  532. flex: auto;
  533. width: 0.741vh;
  534. height: 0.741vh;
  535. margin-right: 0.741vh;
  536. &.long {
  537. width: 2.963vh;
  538. height: 0.37vh;
  539. }
  540. }
  541. .legend-text {
  542. color: @gray-l;
  543. font-size: @fontsize-s;
  544. }
  545. }
  546. }
  547. .project-table {
  548. overflow: auto;
  549. tbody {
  550. height: calc(100vh - 24.5vh);
  551. }
  552. td {
  553. color: #b2bdc0;
  554. }
  555. }
  556. .contentMx {
  557. width: 100%;
  558. overflow-x: auto;
  559. }
  560. .activeMx {
  561. width: 150%;
  562. }
  563. }
  564. </style>