index.vue 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  1. <template>
  2. <div class="draught-fan-list">
  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="wpIps"
  10. clearable
  11. placeholder="请选择"
  12. popper-class="select"
  13. @change="renderWprray"
  14. >
  15. <el-option
  16. v-for="item in typeArray"
  17. :key="item.id"
  18. :value="item.id"
  19. :label="item.name"
  20. />
  21. </el-select>
  22. </div>
  23. </div>
  24. <div class="query-item">
  25. <div class="lable">场站:</div>
  26. <div class="search-input">
  27. <el-select
  28. v-model="wpId"
  29. clearable
  30. multiple
  31. collapse-tags
  32. placeholder="请选择"
  33. popper-class="select"
  34. >
  35. <el-option
  36. v-for="item in wpArray"
  37. :key="item.id"
  38. :value="item.id"
  39. :label="item.name"
  40. />
  41. </el-select>
  42. </div>
  43. </div>
  44. <div class="query-item">
  45. <div class="lable">开始日期:</div>
  46. <div class="search-input">
  47. <el-date-picker
  48. v-model="beginDate"
  49. type="month"
  50. value-format="YYYY-MM-DD"
  51. placeholder="选择日期"
  52. popper-class="date-select"
  53. >
  54. </el-date-picker>
  55. </div>
  56. </div>
  57. <div class="query-item">
  58. <div class="lable">结束日期:</div>
  59. <div class="search-input">
  60. <el-date-picker
  61. v-model="endDate"
  62. type="month"
  63. value-format="YYYY-MM-DD"
  64. placeholder="选择日期"
  65. popper-class="date-select"
  66. >
  67. </el-date-picker>
  68. </div>
  69. </div>
  70. </div>
  71. <div class="query-actions">
  72. <button class="btn green" @click="search()">搜索</button>
  73. </div>
  74. </div>
  75. <div class="df-table">
  76. <ComTable height="100vh" :data="tableData"></ComTable>
  77. </div>
  78. </div>
  79. </template>
  80. <script>
  81. import ComTable from "@com/coms/table/table.vue";
  82. export default {
  83. // 名称
  84. name: "cutAnalyse",
  85. // 使用组件
  86. components: {
  87. ComTable,
  88. },
  89. // 数据
  90. data() {
  91. return {
  92. isAsc: "asc",
  93. typeArray: [],
  94. wpIps: "",
  95. wpArray: [],
  96. wpId: [],
  97. beginDate: new Date(new Date().getTime() - 3600 * 1000 * 24).formatDate(
  98. "yyyy-MM"
  99. ),
  100. endDate: new Date().formatDate("yyyy-MM"),
  101. dialogShow: false,
  102. tableData: {
  103. column: [
  104. {
  105. name: "风场",
  106. field: "windfarm",
  107. is_num: false,
  108. is_light: false,
  109. sortable: true,
  110. },
  111. {
  112. name: "风机",
  113. field: "windturbine",
  114. is_num: false,
  115. is_light: false,
  116. sortable: true,
  117. },
  118. {
  119. name: "起始日期",
  120. field: "beginDate",
  121. is_num: false,
  122. is_light: false,
  123. sortable: true,
  124. },
  125. {
  126. name: "截止日期",
  127. field: "endDate",
  128. is_num: false,
  129. is_light: false,
  130. sortable: true,
  131. },
  132. {
  133. name: "平均风速",
  134. field: "speed",
  135. is_num: false,
  136. is_light: false,
  137. sortable: true,
  138. },
  139. {
  140. name: "发电量(万kwh)",
  141. field: "generatingCapacity",
  142. is_num: false,
  143. is_light: false,
  144. sortable: true,
  145. },
  146. ],
  147. data: [],
  148. },
  149. };
  150. },
  151. // 函数
  152. methods: {
  153. // 请求服务
  154. requestData() {
  155. let that = this;
  156. that.API.requestData({
  157. method: "GET",
  158. subUrl: "powercompare/windfarmAllAjax",
  159. data: {
  160. type: that.typeId,
  161. },
  162. success(res) {
  163. that.allWpArray = res.data;
  164. let fdc = [];
  165. let gf = [];
  166. res.data.forEach((ele) => {
  167. if (ele.id.indexOf("FDC") !== -1) {
  168. fdc.push(ele.id);
  169. } else {
  170. gf.push(ele.id);
  171. }
  172. });
  173. that.typeArray = [
  174. {
  175. id: [].concat(fdc, gf).toString(),
  176. name: "全部",
  177. },
  178. {
  179. id: fdc.toString(),
  180. name: "风场",
  181. },
  182. {
  183. id: gf.toString(),
  184. name: "光伏电站",
  185. },
  186. ];
  187. that.wpIps = [].concat(fdc, gf).toString();
  188. that.renderWprray();
  189. },
  190. });
  191. },
  192. renderWprray() {
  193. let wpArray = [];
  194. if (!this.wpIps) {
  195. this.wpIps = []
  196. .concat(
  197. this.typeArray[1].id.split(","),
  198. this.typeArray[2].id.split(",")
  199. )
  200. .toString();
  201. }
  202. this.allWpArray.forEach((ele) => {
  203. if (this.wpIps.indexOf("FDC") !== -1) {
  204. if (ele.id.indexOf("FDC") !== -1) {
  205. wpArray.push(ele);
  206. }
  207. } else if (this.wpIps.indexOf("GDC")) {
  208. if (ele.id.indexOf("GDC") !== -1) {
  209. wpArray.push(ele);
  210. }
  211. } else {
  212. wpArray.push(ele);
  213. }
  214. });
  215. this.wpId = this.wpIps ? this.wpIps.split(",") : [];
  216. this.wpArray = wpArray;
  217. this.getOutputSpeedList();
  218. },
  219. getOutputSpeedList() {
  220. let that = this;
  221. if (!that.beginDate || !that.endDate) {
  222. that.BASE.showMsg({
  223. msg: "日期不可为空",
  224. });
  225. } else {
  226. that.API.requestData({
  227. method: "GET",
  228. subUrl: "leaderboard/totalPowerCapacityTopList",
  229. showLoading: true,
  230. data: {
  231. wpIps: that.wpId.length ? that.wpId.toString() : that.wpIps,
  232. isAsc: that.isAsc,
  233. beginDate: that.beginDate + "-01",
  234. endDate:
  235. that.endDate +
  236. "-" +
  237. (new Date().getDate() < 10
  238. ? "0" + new Date().getDate()
  239. : new Date().getDate()),
  240. orderByColumn: "",
  241. },
  242. success(res) {
  243. res.data.forEach((ele) => {
  244. ele.beginDate = new Date(ele.beginDate).formatDate("yyyy-MM-dd");
  245. ele.endDate = new Date(ele.beginDate).formatDate("yyyy-MM-dd");
  246. ele.speed = ele.speed.toFixed(2);
  247. });
  248. res.data.sort((a, b) => {
  249. return b.power - a.power;
  250. });
  251. that.tableData.data = res.data;
  252. },
  253. });
  254. }
  255. },
  256. search() {
  257. this.getOutputSpeedList();
  258. },
  259. },
  260. created() {
  261. this.requestData();
  262. },
  263. mounted() {},
  264. unmounted() {},
  265. };
  266. </script>
  267. <style lang="less" scoped>
  268. .draught-fan-list {
  269. width: 100%;
  270. height: 100%;
  271. display: flex;
  272. flex-direction: column;
  273. .btn-group-tabs {
  274. display: flex;
  275. flex-direction: row;
  276. .photovoltaic {
  277. margin-left: 1.481vh;
  278. }
  279. }
  280. .df-table {
  281. border: 0.093vh solid fade(@darkgray, 50%);
  282. position: relative;
  283. overflow: hidden;
  284. flex-grow: 1;
  285. margin-top: 1.481vh;
  286. height: 80vh;
  287. &:before {
  288. content: "";
  289. width: 0.37vh;
  290. height: 0.37vh;
  291. background: @write;
  292. position: absolute;
  293. left: 0.278vh;
  294. top: 0.278vh;
  295. }
  296. tbody {
  297. height: calc(100vh - 166px);
  298. }
  299. }
  300. }
  301. </style>