PerformanceList.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457
  1. <template>
  2. <el-container>
  3. <el-header>
  4. <el-row>
  5. <el-col :span="24">
  6. <el-card style="height: 30px">
  7. <div class="grid-content bg-purple-dark">
  8. <span>电量绩效榜</span>
  9. </div>
  10. </el-card>
  11. </el-col>
  12. </el-row>
  13. </el-header>
  14. <el-main>
  15. <el-card>
  16. <el-form :inline="true" :model="formInline" class="demo-form-inline">
  17. <el-row :gutter="1">
  18. <el-form-item label="风场">
  19. <el-input
  20. v-model="formInline.windfarm"
  21. id="windfarm"
  22. placeholder="风场"
  23. ></el-input>
  24. </el-form-item>
  25. <el-form-item label="项目">
  26. <el-input
  27. v-model="formInline.project"
  28. id="project"
  29. placeholder="项目"
  30. @focus="checkwindfarm"
  31. ></el-input>
  32. </el-form-item>
  33. <el-form-item label="线路">
  34. <el-input
  35. v-model="formInline.line"
  36. id="line"
  37. placeholder="线路"
  38. @focus="checkproject"
  39. ></el-input>
  40. </el-form-item>
  41. <el-form-item label="选择时间:">
  42. <el-date-picker
  43. v-model="timedate"
  44. type="daterange"
  45. range-separator="至"
  46. start-placeholder="开始日期"
  47. end-placeholder="结束日期"
  48. @click="checktime"
  49. >
  50. </el-date-picker>
  51. </el-form-item>
  52. <el-form-item>
  53. <el-button type="primary" @click="queryApData" :plain="true"
  54. >查询</el-button
  55. >
  56. </el-form-item>
  57. <el-form-item>
  58. <el-button type="primary" @click="queryApDataMx"
  59. >明细信息</el-button
  60. >
  61. </el-form-item>
  62. <el-form-item>
  63. <el-button type="primary" @click="toExcel">导出</el-button>
  64. </el-form-item>
  65. </el-row>
  66. </el-form>
  67. <el-tabs
  68. v-model="activeName"
  69. type="card"
  70. @tab-click="handleClick"
  71. style="height: 100%; width: 100%"
  72. >
  73. <el-tab-pane label="风场" name="first" id="fc">
  74. <el-row
  75. style="
  76. width: 100%;
  77. height: 100%;
  78. display: flex;
  79. justify-content: space-between;
  80. "
  81. >
  82. <el-card
  83. shadow="always"
  84. style="
  85. height: 440px;
  86. width: 45%;
  87. display: table-cell;
  88. vertical-align: middle;
  89. "
  90. >
  91. <div
  92. id="chartLineBox"
  93. style="width: 800px; height: 400px; margin: auto"
  94. ></div>
  95. </el-card>
  96. <el-card shadow="always" style="width: 45%" height="400px" id="moban">
  97. <el-table
  98. :data="tableData"
  99. style="width: 100%"
  100. max-height="400px"
  101. >
  102. <el-table-column label="项目列表">
  103. <el-table-column fixed type="index" width="45">
  104. </el-table-column>
  105. <el-table-column prop="date" label="名称" width="150">
  106. </el-table-column>
  107. <el-table-column prop="name" label="理论发电量" width="120">
  108. </el-table-column>
  109. <el-table-column
  110. prop="province"
  111. label="SCADA发电量"
  112. width="120"
  113. >
  114. </el-table-column>
  115. <el-table-column prop="city" label="风速" width="120">
  116. </el-table-column>
  117. <el-table-column
  118. prop="address"
  119. label="非计划检修"
  120. width="300"
  121. >
  122. </el-table-column>
  123. <el-table-column prop="zip" label="计划检修" width="120">
  124. </el-table-column>
  125. <el-table-column prop="zip" label="受累" width="120">
  126. </el-table-column>
  127. <el-table-column prop="zip" label="限电" width="120">
  128. </el-table-column>
  129. <el-table-column prop="zip" label="性能" width="120">
  130. </el-table-column>
  131. <el-table-column prop="zip" label="风能利用率%" width="120">
  132. </el-table-column>
  133. <!-- <el-table-column fixed="right" label="受累" width="120">
  134. </el-table-column> -->
  135. </el-table-column>
  136. </el-table>
  137. </el-card>
  138. </el-row>
  139. </el-tab-pane>
  140. <el-tab-pane label="项目" name="second" id="xm"> </el-tab-pane>
  141. <el-tab-pane label="集电线路" name="third" id="jcxl"> </el-tab-pane>
  142. </el-tabs>
  143. </el-card>
  144. </el-main>
  145. </el-container>
  146. </template>
  147. <script>
  148. import * as echarts from "echarts";
  149. export default {
  150. data() {
  151. return {
  152. formInline: {
  153. windfarm: "",
  154. project: "",
  155. line: "",
  156. },
  157. timedate: "",
  158. activeName: "second",
  159. tableData: [
  160. {
  161. date: "2016-05-03",
  162. name: "王小虎",
  163. province: "上海",
  164. city: "普陀区",
  165. address: "上海市普陀区金沙江路 1518 弄",
  166. zip: 200333,
  167. },
  168. {
  169. date: "2016-05-02",
  170. name: "王小虎",
  171. province: "上海",
  172. city: "普陀区",
  173. address: "上海市普陀区金沙江路 1518 弄",
  174. zip: 200333,
  175. },
  176. {
  177. date: "2016-05-04",
  178. name: "王小虎",
  179. province: "上海",
  180. city: "普陀区",
  181. address: "上海市普陀区金沙江路 1518 弄",
  182. zip: 200333,
  183. },
  184. {
  185. date: "2016-05-01",
  186. name: "王小虎",
  187. province: "上海",
  188. city: "普陀区",
  189. address: "上海市普陀区金沙江路 1518 弄",
  190. zip: 200333,
  191. },
  192. {
  193. date: "2016-05-08",
  194. name: "王小虎",
  195. province: "上海",
  196. city: "普陀区",
  197. address: "上海市普陀区金沙江路 1518 弄",
  198. zip: 200333,
  199. },
  200. {
  201. date: "2016-05-06",
  202. name: "王小虎",
  203. province: "上海",
  204. city: "普陀区",
  205. address: "上海市普陀区金沙江路 1518 弄",
  206. zip: 200333,
  207. },
  208. {
  209. date: "2016-05-07",
  210. name: "王小虎",
  211. province: "上海",
  212. city: "普陀区",
  213. address: "上海市普陀区金沙江路 1518 弄",
  214. zip: 200333,
  215. },
  216. ,
  217. {
  218. date: "2016-05-07",
  219. name: "王小虎",
  220. province: "上海",
  221. city: "普陀区",
  222. address: "上海市普陀区金沙江路 1518 弄",
  223. zip: 200333,
  224. },
  225. {
  226. date: "2016-05-07",
  227. name: "王小虎",
  228. province: "上海",
  229. city: "普陀区",
  230. address: "上海市普陀区金沙江路 1518 弄",
  231. zip: 200333,
  232. },
  233. {
  234. date: "2016-05-07",
  235. name: "王小虎",
  236. province: "上海",
  237. city: "普陀区",
  238. address: "上海市普陀区金沙江路 1518 弄",
  239. zip: 200333,
  240. },
  241. ],
  242. };
  243. },
  244. methods: {
  245. onSubmit() {
  246. console.log("submit!");
  247. },
  248. handleClick() {},
  249. deleteRow(index, rows) {
  250. rows.splice(index, 1);
  251. },
  252. queryApData() {
  253. if (this.formInline.line == "") {
  254. this.$message.error("请选择路线!");
  255. return;
  256. }
  257. },
  258. checkwindfarm() {
  259. if (this.formInline.windfarm == "") {
  260. this.$message.error("请选择风场!");
  261. return;
  262. }
  263. },
  264. checkproject() {
  265. if (this.formInline.project == "") {
  266. this.$message.error("请选择项目!");
  267. return;
  268. }
  269. if (new Date(this.timedate) == null) {
  270. this.$message.error("请选择时间");
  271. return;
  272. }
  273. },
  274. checktime() {
  275. if (new Date(this.timedate) == null) {
  276. this.$message.error("请选择时间");
  277. return;
  278. }
  279. },
  280. queryApDataMx() {
  281. this.$router.push({ path: "/new_performanceList_fan" });
  282. },
  283. toExcel() {},
  284. },
  285. mounted() {
  286. this.chartLine = echarts.init(document.getElementById("chartLineBox"));
  287. var option;
  288. option = {
  289. title: {
  290. text: "风机绩效榜单",
  291. left: 300,
  292. top: -5,
  293. textStyle: {
  294. fontSize: 13,
  295. },
  296. },
  297. tooltip: {
  298. trigger: "axis",
  299. axisPointer: {
  300. // Use axis to trigger tooltip
  301. type: "shadow", // 'shadow' as default; can also be 'line' or 'shadow'
  302. },
  303. },
  304. legend: {
  305. left: 15,
  306. top: 30,
  307. data: [
  308. "实发电量",
  309. "计划检修损失",
  310. "非计划检修损失",
  311. "限电损失",
  312. "受累损失",
  313. "性能损失",
  314. "总和",
  315. ],
  316. },
  317. grid: {
  318. left: "3%",
  319. right: "4%",
  320. bottom: "3%",
  321. containLabel: true,
  322. },
  323. xAxis: {
  324. type: "value",
  325. },
  326. yAxis: {
  327. type: "category",
  328. data: ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
  329. },
  330. series: [
  331. {
  332. name: "实发电量",
  333. type: "bar",
  334. stack: "total",
  335. label: {
  336. show: true,
  337. },
  338. emphasis: {
  339. focus: "series",
  340. },
  341. data: [320, 302, 301, 334, 390, 330, 320],
  342. },
  343. {
  344. name: "计划检修损失",
  345. type: "bar",
  346. stack: "total",
  347. label: {
  348. show: true,
  349. },
  350. emphasis: {
  351. focus: "series",
  352. },
  353. data: [120, 132, 101, 134, 90, 230, 210],
  354. },
  355. {
  356. name: "非计划检修损失",
  357. type: "bar",
  358. stack: "total",
  359. label: {
  360. show: true,
  361. },
  362. emphasis: {
  363. focus: "series",
  364. },
  365. data: [220, 182, 191, 234, 290, 330, 310],
  366. },
  367. {
  368. name: "限电损失",
  369. type: "bar",
  370. stack: "total",
  371. label: {
  372. show: true,
  373. },
  374. emphasis: {
  375. focus: "series",
  376. },
  377. data: [150, 212, 201, 154, 190, 330, 410],
  378. },
  379. {
  380. name: "受累损失",
  381. type: "bar",
  382. stack: "total",
  383. label: {
  384. show: true,
  385. },
  386. emphasis: {
  387. focus: "series",
  388. },
  389. data: [820, 832, 901, 934, 1290, 1330, 1320],
  390. },
  391. {
  392. name: "性能损失",
  393. type: "bar",
  394. stack: "total",
  395. label: {
  396. show: true,
  397. },
  398. emphasis: {
  399. focus: "series",
  400. },
  401. data: [820, 832, 901, 934, 1290, 1330, 1320],
  402. },
  403. //曲线
  404. {
  405. name: "总和",
  406. data: [2500, 2600, 2700, 2900, 3000, 3500, 4000],
  407. type: "line",
  408. symbol: "circle",
  409. symbolSize: 20,
  410. lineStyle: {
  411. color: "#5470C6",
  412. width: 4,
  413. type: "dashed",
  414. },
  415. itemStyle: {
  416. borderWidth: 3,
  417. borderColor: "#EE6666",
  418. color: "yellow",
  419. },
  420. },
  421. ],
  422. };
  423. this.chartLine.setOption(option);
  424. },
  425. };
  426. </script>
  427. <style scoped>
  428. .bg-purple-dark {
  429. background: #fff;
  430. }
  431. .grid-content {
  432. border-radius: 2px;
  433. min-height: 36px;
  434. margin-top: -15px;
  435. }
  436. .item {
  437. margin-top: 10px;
  438. margin-right: 40px;
  439. }
  440. .el-row {
  441. margin: 10px;
  442. }
  443. </style>