index.vue 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338
  1. <template>
  2. <div class="pr-wrapper">
  3. <div class="pr-search">
  4. <el-select
  5. size="mini"
  6. v-model="station"
  7. placeholder="请选择"
  8. style="margin-left: 15px"
  9. >
  10. <el-option
  11. v-for="item in stationOptions"
  12. :key="item.id"
  13. :label="item.aname"
  14. :value="item.id"
  15. >
  16. </el-option>
  17. </el-select>
  18. <el-date-picker
  19. size="mini"
  20. type="month"
  21. v-model="month"
  22. value-format="YYYY-MM"
  23. placeholder="请选择"
  24. style="margin-left: 15px"
  25. popper-class="date-select"
  26. >
  27. </el-date-picker>
  28. <el-button round size="mini" class="buttons" @click="getDatas"
  29. >搜 索</el-button
  30. >
  31. </div>
  32. <div class="pr-content">
  33. <div class="leftContent">
  34. <span>{{ selectValue }}</span>
  35. </div>
  36. <div class="pr-body">
  37. <div class="table-wrapper">
  38. <el-table
  39. :data="tableData"
  40. width="100%"
  41. stripe
  42. @sort-change="handleSort"
  43. >
  44. <el-table-column
  45. v-for="(item, index) in tableHeaders"
  46. :key="index"
  47. header-align="center"
  48. :align="item.align"
  49. show-overflow-tooltip
  50. :prop="item.prop"
  51. :label="item.label"
  52. :width="item.width"
  53. :sortable="
  54. item.prop != 'prpm' &&
  55. item.prop != 'wtid' &&
  56. item.prop != 'rl' &&
  57. item.prop != 'level'
  58. ? 'custom'
  59. : false
  60. "
  61. >
  62. <template #header>
  63. <div v-if="item.label.length > 2 || item.label == '容量'">
  64. {{ item.label }}
  65. </div>
  66. <span v-else>{{ item.label }}</span>
  67. <span>{{ item.unit }}</span>
  68. </template>
  69. <template #default="{ row }">
  70. <div class="pr-table-cell" v-if="item.label == '增长率'">
  71. <span>{{
  72. row[item.prop] || row[item.prop] == 0
  73. ? row[item.prop]
  74. : "--"
  75. }}</span>
  76. <span v-if="row[item.prop] && row[item.prop] != 0">
  77. <i
  78. class="svg-icon svg-icon-sm svg-icon-skyBlue"
  79. v-if="row[item.prop] < 0"
  80. >
  81. <svgIcon svgid="svg-arrow-down"></svgIcon>
  82. </i>
  83. <i
  84. class="svg-icon svg-icon-sm svg-icon-orange1"
  85. v-if="row[item.prop] > 0"
  86. >
  87. <svgIcon svgid="svg-arrow-up"></svgIcon>
  88. </i>
  89. </span>
  90. </div>
  91. <div v-else>
  92. {{
  93. row[item.prop] || row[item.prop] == 0
  94. ? row[item.prop]
  95. : "--"
  96. }}
  97. </div>
  98. </template>
  99. </el-table-column>
  100. <el-table-column width="600"></el-table-column>
  101. </el-table>
  102. </div>
  103. <div class="chart-wrapper">
  104. <div :style="{ height: height }">
  105. <barCharts
  106. v-if="showDisplay"
  107. height="100%"
  108. width="100%"
  109. :bardata="bardata"
  110. />
  111. </div>
  112. </div>
  113. </div>
  114. </div>
  115. </div>
  116. </template>
  117. <script>
  118. import dayjs from "dayjs";
  119. import barCharts from "@/views/economicsOperation/photovoltaicAnalyse/prAnalyse/components/barCharts.vue";
  120. import { getPrAnalysis } from "@/api/monthlyPerformanceAnalysis.js";
  121. import { GetStationByCompany } from "@/api/factoryMonitor/index.js";
  122. import svgIcon from "@/components/coms/icon/svg-icon.vue";
  123. export default {
  124. name: "PrAnalyse", //PR分析
  125. data() {
  126. return {
  127. selectValue: "系统效率分析",
  128. station: "",
  129. stationOptions: [],
  130. month: dayjs().format("YYYY-MM"),
  131. tableHeaders: [
  132. { prop: "prpm", label: "排名", width: 60 },
  133. { prop: "wtid", label: "设备", width: 100 },
  134. { prop: "level", label: "运行状态", width: 120 },
  135. { prop: "rl", label: "容量", width: 75, unit: "(kW)", align: "right" },
  136. {
  137. prop: "ljgzz",
  138. label: "累计光照",
  139. width: 120,
  140. unit: "(kW/m²)",
  141. align: "right",
  142. },
  143. {
  144. prop: "fdl",
  145. label: "发电量",
  146. width: 110,
  147. unit: "(kWh)",
  148. align: "right",
  149. },
  150. {
  151. prop: "llfdlmax",
  152. label: "最大理论发电量",
  153. unit: "(kWh)",
  154. align: "right",
  155. },
  156. { prop: "pr", label: "本期", width: 80, align: "right" },
  157. { prop: "prhb", label: "上月", width: 80, align: "right" },
  158. {
  159. prop: "prhbzzl",
  160. label: "增长率",
  161. width: 120,
  162. unit: "(%)",
  163. align: "right",
  164. },
  165. { prop: "prtb", label: "同期", width: 80, align: "right" },
  166. {
  167. prop: "prtbzzl",
  168. label: "增长率",
  169. width: 120,
  170. unit: "(%)",
  171. align: "right",
  172. },
  173. ],
  174. tableData: [],
  175. bardata: {},
  176. height: "880px",
  177. target: "",
  178. sort: "",
  179. showDisplay: true,
  180. };
  181. },
  182. components: { barCharts, svgIcon },
  183. created() {
  184. this.getStation();
  185. },
  186. methods: {
  187. getStation() {
  188. GetStationByCompany({
  189. companyids: 0,
  190. type: -2,
  191. }).then(({ data: res, code }) => {
  192. if (res.code == 200) {
  193. this.stationOptions = res.data;
  194. this.station = this.stationOptions[0].id;
  195. this.getDatas();
  196. }
  197. });
  198. },
  199. getDatas() {
  200. this.BASE.showLoading();
  201. getPrAnalysis({
  202. wpId: this.station,
  203. month: this.month,
  204. target: this.target,
  205. sort: this.sort,
  206. }).then((res) => {
  207. this.BASE.closeLoading();
  208. if (res.code == 200) {
  209. this.bardata = {
  210. name: res.data.map((i) => i.wtid),
  211. lengend: "PR",
  212. data: res.data.map((i) => i.pr),
  213. };
  214. if (res.data.length > 22) {
  215. this.height = res.data.length * 37 + 53 + "px";
  216. } else {
  217. this.height = 23 * 38 + 80 + "px";
  218. }
  219. this.showDisplay = false;
  220. setTimeout(() => {
  221. this.showDisplay = true;
  222. }, 5);
  223. this.tableData = res.data.map((i) => {
  224. return {
  225. ...i,
  226. prhbzzl: i.prhbzzl ? i.prhbzzl.toFixed(2) : i.prhbzzl,
  227. prtbzzl: i.prtbzzl ? i.prtbzzl.toFixed(2) : i.prtbzzl,
  228. };
  229. });
  230. }
  231. });
  232. },
  233. handleSort({ column, prop, order }) {
  234. switch (prop) {
  235. case "pr":
  236. this.target = "prpm";
  237. break;
  238. case "prhb":
  239. this.target = "prhbpm";
  240. break;
  241. case "prhbzzl":
  242. this.target = "prhbzzlpm";
  243. break;
  244. case "prtb":
  245. this.target = "prtbpm";
  246. break;
  247. case "prtbzzl":
  248. this.target = "prtbzzlpm";
  249. break;
  250. case "llfdlmax":
  251. this.target = "llfdlmaxpm";
  252. break;
  253. case "ljgzz":
  254. this.target = "ljgzzpm";
  255. break;
  256. case "fdl":
  257. this.target = "fdlpm";
  258. break;
  259. case null:
  260. this.target = "";
  261. }
  262. this.sort = order == "ascending" ? 1 : order == "descending" ? 2 : "";
  263. this.getDatas();
  264. },
  265. },
  266. };
  267. </script>
  268. <style lang="less" scoped>
  269. .pr-wrapper {
  270. height: 100%;
  271. padding: 0 20px;
  272. .pr-search {
  273. padding: 10px 0;
  274. .buttons {
  275. margin-left: 15px;
  276. background-color: rgba(5, 187, 76, 0.2);
  277. border: 1px solid #3b6c53;
  278. color: #b3b3b3;
  279. font-size: 14px;
  280. &:hover,
  281. &.active {
  282. background-color: rgba(5, 187, 76, 0.5);
  283. color: #ffffff;
  284. }
  285. }
  286. }
  287. .pr-content {
  288. height: calc(100% - 40px);
  289. width: 100%;
  290. padding-bottom: 10px;
  291. .leftContent {
  292. width: 242px;
  293. height: 45px;
  294. line-height: 45px;
  295. background: url("~@/assets/imgs/title_left_bg1.png") no-repeat;
  296. span {
  297. font-size: 16px;
  298. font-family: Microsoft YaHei;
  299. font-weight: 400;
  300. color: #05bb4c;
  301. margin-left: 25px;
  302. }
  303. }
  304. .pr-body {
  305. height: calc(100% - 36px);
  306. width: 100%;
  307. position: relative;
  308. overflow: auto;
  309. .table-wrapper ::v-deep {
  310. height: 100%;
  311. width: 100%;
  312. .el-table {
  313. .el-table__header-wrapper {
  314. position: fixed;
  315. z-index: 1;
  316. }
  317. .el-table__body-wrapper {
  318. margin-top: 46.85px;
  319. }
  320. }
  321. }
  322. .chart-wrapper {
  323. // z-index: 2;
  324. width: 600px;
  325. height: 100%;
  326. position: absolute;
  327. right: 0;
  328. top: 0;
  329. }
  330. }
  331. }
  332. }
  333. </style>