qxpclfx.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. <template>
  2. <div>
  3. <div class="query mg-b-8">
  4. <div class="query-items">
  5. <div
  6. class="newspan"
  7. v-for="(item, index) of optionData"
  8. :key="index"
  9. :class="{ active: cur == index }"
  10. @click="handleOpen(item, index)"
  11. >
  12. {{ item }}
  13. </div>
  14. </div>
  15. </div>
  16. <div class="query mg-b-8">
  17. <div class="query-items">
  18. <div class="query-item">
  19. <div class="lable">场站:</div>
  20. <div class="search-input">
  21. <el-select
  22. v-model="value1"
  23. clearable
  24. placeholder="请选择"
  25. popper-class="select"
  26. >
  27. <el-option
  28. v-for="item in ChangZhan"
  29. :key="item.id"
  30. :value="item.id"
  31. :label="item.name"
  32. >
  33. </el-option>
  34. </el-select>
  35. </div>
  36. </div>
  37. <div class="query-item">
  38. <div class="lable">日期:</div>
  39. <div class="search-input">
  40. <el-date-picker
  41. v-model="date"
  42. :type="cur ? 'date' : 'month'"
  43. placeholder="选择日期"
  44. popper-class="date-select"
  45. :value-format="`YYYY-MM${cur ? '-DD' : ''}`"
  46. >
  47. </el-date-picker>
  48. </div>
  49. </div>
  50. <div class="query-actions">
  51. <button class="btn green" @click="getTable">查询</button>
  52. </div>
  53. </div>
  54. </div>
  55. <div class="table-box">
  56. <div class="title">{{ showTitle }}</div>
  57. <ComTable
  58. :data="tableData"
  59. :pageSize="20"
  60. height="73vh"
  61. v-loading="tableLoading"
  62. element-loading-text="拼命加载中.."
  63. element-loading-background="rgba(0, 0, 0, 0.8)"
  64. ></ComTable>
  65. </div>
  66. </div>
  67. </template>
  68. <script>
  69. import ComTable from "@/components/coms/table/table-qc.vue";
  70. import thermometerVue from "../../components/chart/bar/thermometer.vue";
  71. import api1 from "@api/economic/index.js";
  72. import api from "@api/wisdomOverhaul/energy/index.js";
  73. export default {
  74. name: "qxpclfx",
  75. components: { ComTable },
  76. data() {
  77. return {
  78. cur: 0,
  79. optionData: ["月曲线偏差率排行榜", "日曲线偏差率排行榜"],
  80. ChangZhan: [],
  81. value1: "",
  82. date: "",
  83. showTitle: "月曲线偏差率排行榜",
  84. tableLoading: true,
  85. tableData: {
  86. column: [
  87. {
  88. name: "风机",
  89. field: "wtCode",
  90. is_num: false,
  91. is_light: false,
  92. sortable: thermometerVue,
  93. },
  94. {
  95. name: "实际 / 保证(%)",
  96. field: "deviationRate2",
  97. is_num: false,
  98. is_light: false,
  99. sortable: true,
  100. },
  101. {
  102. name: "实际 / 最优(%)",
  103. field: "deviationRate1",
  104. is_num: false,
  105. is_light: false,
  106. sortable: true,
  107. },
  108. {
  109. name: "最优 / 保证(%)",
  110. field: "deviationRate3",
  111. is_num: false,
  112. is_light: false,
  113. sortable: true,
  114. },
  115. {
  116. name: "环比",
  117. field: "monthDeviationRate",
  118. is_num: false,
  119. is_light: false,
  120. sortable: true,
  121. },
  122. {
  123. name: "同比",
  124. field: "yearDeviationRate",
  125. is_num: false,
  126. is_light: false,
  127. sortable: true,
  128. },
  129. {
  130. name: "比标杆风机",
  131. field: "standardDeviationRate",
  132. is_num: false,
  133. is_light: false,
  134. sortable: true,
  135. },
  136. ],
  137. data: [],
  138. },
  139. tableId: "",
  140. };
  141. },
  142. created() {
  143. this.ChangZhanVal();
  144. this.date = new Date().formatDate("yyyy-MM-dd");
  145. },
  146. methods: {
  147. // 获取表格数据
  148. getTable() {
  149. this.tableLoading = true;
  150. const url = this.cur
  151. ? "getCurvefittingmainList"
  152. : "getCurvefittingmonthmainList";
  153. const param = {
  154. isAsc: "asc",
  155. wpId: this.value1,
  156. pageNum: 1,
  157. pageSize: 1000,
  158. };
  159. if (this.cur) {
  160. param.recorddate = this.date;
  161. } else {
  162. param.year = parseInt(this.date?.split("-")[0]);
  163. param.month = parseInt(this.date?.split("-")[1]);
  164. }
  165. api[url](param).then((res) => {
  166. this.tableLoading = false;
  167. if (res.code === 200) {
  168. res.data.forEach((ele) => {
  169. ele.curIndex = this.cur;
  170. ele.recordDate = this.date;
  171. });
  172. this.tableData.data = res.data || [];
  173. }
  174. });
  175. },
  176. // tab
  177. handleOpen(vl, index) {
  178. this.cur = index;
  179. this.showTitle = vl;
  180. this.date = new Date().formatDate(`yyyy-MM${index ? "-dd" : ""}`);
  181. this.getTable();
  182. },
  183. // 场站
  184. ChangZhanVal() {
  185. api1
  186. .getWpList({
  187. type: "-1",
  188. })
  189. .then((res) => {
  190. if (res.data.code === 200) {
  191. this.ChangZhan = res.data.data;
  192. this.value1 = res.data.data[0].id;
  193. this.getTable();
  194. }
  195. });
  196. },
  197. },
  198. };
  199. </script>
  200. <style scoped>
  201. .newsDiv {
  202. color: rgba(255, 255, 255, 0.75);
  203. background-color: rgba(255, 255, 255, 0.1);
  204. margin-bottom: 8px;
  205. line-height: 3.4259vh;
  206. padding: 0 15px;
  207. }
  208. .newspan {
  209. line-height: 30px;
  210. cursor: pointer;
  211. padding: 0 1vw;
  212. margin: 0 2px;
  213. color: #9ca5a8;
  214. transition: color 0.2s ease-in-out;
  215. position: relative;
  216. }
  217. .newspan:hover {
  218. background: linear-gradient(
  219. to top,
  220. rgba(5, 187, 76, 0.5),
  221. rgba(5, 187, 76, 0)
  222. );
  223. color: white;
  224. position: relative;
  225. }
  226. .newspan:hover::after {
  227. content: "";
  228. position: absolute;
  229. width: 100%;
  230. height: 0.463vh;
  231. border: 0.093vh solid #05bb4c;
  232. border-top: 0;
  233. left: 0;
  234. bottom: 0;
  235. box-sizing: border-box;
  236. }
  237. .active {
  238. background: linear-gradient(
  239. to top,
  240. rgba(5, 187, 76, 0.5),
  241. rgba(5, 187, 76, 0)
  242. );
  243. color: white;
  244. position: relative;
  245. }
  246. .active::after {
  247. content: "";
  248. position: absolute;
  249. width: 100%;
  250. height: 0.463vh;
  251. border: 0.093vh solid #05bb4c;
  252. border-top: 0;
  253. left: 0;
  254. bottom: 0;
  255. box-sizing: border-box;
  256. }
  257. .title {
  258. background: rgba(255, 255, 255, 0.1);
  259. margin-bottom: 8px;
  260. padding: 1vh;
  261. }
  262. </style>