index.vue 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  1. <template>
  2. <div style="height: 100%; padding: 10px 20px">
  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. <el-button size="mini" round class="searchColor" @click="getTable"
  52. >查 询</el-button
  53. >
  54. </div>
  55. </div>
  56. </div>
  57. <div class="table-box">
  58. <div class="leftContent">
  59. <span>{{ showTitle }}</span>
  60. </div>
  61. <ComTable
  62. :data="tableData"
  63. :pageSize="20"
  64. v-loading="tableLoading"
  65. element-loading-text="拼命加载中.."
  66. element-loading-background="rgba(0, 0, 0, 0.8)"
  67. ></ComTable>
  68. </div>
  69. </div>
  70. </template>
  71. <script>
  72. import ComTable from "@/components/coms/table/table-qc.vue";
  73. import thermometerVue from "../../../../components/chart/bar/thermometer.vue";
  74. import api1 from "@api/economic/index.js";
  75. import api from "@api/wisdomOverhaul/energy/index.js";
  76. export default {
  77. name: "Qxpclfx",
  78. components: { ComTable },
  79. data() {
  80. return {
  81. cur: 0,
  82. optionData: ["月曲线偏差率排行榜", "日曲线偏差率排行榜"],
  83. ChangZhan: [],
  84. value1: "",
  85. date: "",
  86. showTitle: "月曲线偏差率排行榜",
  87. tableLoading: true,
  88. tableData: {
  89. column: [
  90. {
  91. name: "风机",
  92. field: "wtCode",
  93. is_num: false,
  94. is_light: false,
  95. sortable: thermometerVue,
  96. },
  97. {
  98. name: "实际 / 保证(%)",
  99. field: "deviationRate2",
  100. is_num: false,
  101. is_light: false,
  102. sortable: true,
  103. },
  104. {
  105. name: "实际 / 最优(%)",
  106. field: "deviationRate1",
  107. is_num: false,
  108. is_light: false,
  109. sortable: true,
  110. },
  111. {
  112. name: "最优 / 保证(%)",
  113. field: "deviationRate3",
  114. is_num: false,
  115. is_light: false,
  116. sortable: true,
  117. },
  118. {
  119. name: "环比",
  120. field: "monthDeviationRate",
  121. is_num: false,
  122. is_light: false,
  123. sortable: true,
  124. },
  125. {
  126. name: "同比",
  127. field: "yearDeviationRate",
  128. is_num: false,
  129. is_light: false,
  130. sortable: true,
  131. },
  132. {
  133. name: "比标杆风机",
  134. field: "standardDeviationRate",
  135. is_num: false,
  136. is_light: false,
  137. sortable: true,
  138. },
  139. ],
  140. data: [],
  141. },
  142. tableId: "",
  143. };
  144. },
  145. created() {
  146. this.ChangZhanVal();
  147. this.date = new Date().formatDate("yyyy-MM-dd");
  148. },
  149. methods: {
  150. // 获取表格数据
  151. getTable() {
  152. this.tableLoading = true;
  153. const url = this.cur
  154. ? "getCurvefittingmainList"
  155. : "getCurvefittingmonthmainList";
  156. const param = {
  157. isAsc: "asc",
  158. wpId: this.value1,
  159. pageNum: 1,
  160. pageSize: 1000,
  161. };
  162. if (this.cur) {
  163. param.recorddate = this.date;
  164. } else {
  165. param.year = parseInt(this.date?.split("-")[0]);
  166. param.month = parseInt(this.date?.split("-")[1]);
  167. }
  168. api[url](param).then((res) => {
  169. this.tableLoading = false;
  170. if (res.code === 200) {
  171. res.data.forEach((ele) => {
  172. ele.curIndex = this.cur;
  173. ele.recordDate = this.date;
  174. });
  175. this.tableData.data = res.data || [];
  176. }
  177. });
  178. },
  179. // tab
  180. handleOpen(vl, index) {
  181. this.cur = index;
  182. this.showTitle = vl;
  183. this.date = new Date().formatDate(`yyyy-MM${index ? "-dd" : ""}`);
  184. this.getTable();
  185. },
  186. // 场站
  187. ChangZhanVal() {
  188. api1
  189. .getWpList({
  190. type: "-1",
  191. })
  192. .then((res) => {
  193. if (res.data.code === 200) {
  194. this.ChangZhan = res.data.data;
  195. this.value1 = res.data.data[0].id;
  196. this.getTable();
  197. }
  198. });
  199. },
  200. },
  201. };
  202. </script>
  203. <style scoped lang="less">
  204. .table-box {
  205. height: calc(100% - 80px);
  206. .leftContent {
  207. width: 242px;
  208. height: 45px;
  209. line-height: 45px;
  210. background: url("~@/assets/imgs/title_left_bg1.png") no-repeat;
  211. span {
  212. font-size: 16px;
  213. font-family: Microsoft YaHei;
  214. font-weight: 400;
  215. color: #05bb4c;
  216. margin-left: 25px;
  217. }
  218. }
  219. }
  220. .query-actions {
  221. margin-left: 0 !important;
  222. }
  223. button {
  224. margin-left: 10px;
  225. background: rgba(67, 81, 107, 0.3);
  226. border: 1px solid #274934;
  227. color: #b3b3b3;
  228. }
  229. .searchColor {
  230. background-color: rgba(5, 187, 76, 0.2);
  231. border: 1px solid #3b6c53;
  232. color: #b3b3b3;
  233. font-size: 14px;
  234. &:hover {
  235. background-color: rgba(5, 187, 76, 0.5);
  236. color: #ffffff;
  237. }
  238. }
  239. .newspan {
  240. line-height: 30px;
  241. cursor: pointer;
  242. padding: 0 1vw;
  243. margin: 0 2px;
  244. color: #9ca5a8;
  245. transition: color 0.2s ease-in-out;
  246. position: relative;
  247. }
  248. .newspan:hover {
  249. background: linear-gradient(
  250. to top,
  251. rgba(5, 187, 76, 0.5),
  252. rgba(5, 187, 76, 0)
  253. );
  254. color: white;
  255. position: relative;
  256. }
  257. .newspan:hover::after {
  258. content: "";
  259. position: absolute;
  260. width: 100%;
  261. height: 0.463vh;
  262. border: 0.093vh solid #05bb4c;
  263. border-top: 0;
  264. left: 0;
  265. bottom: 0;
  266. box-sizing: border-box;
  267. }
  268. .active {
  269. background: linear-gradient(
  270. to top,
  271. rgba(5, 187, 76, 0.5),
  272. rgba(5, 187, 76, 0)
  273. );
  274. color: white;
  275. position: relative;
  276. }
  277. .active::after {
  278. content: "";
  279. position: absolute;
  280. width: 100%;
  281. height: 4px;
  282. border: 1px solid #05bb4c;
  283. border-top: 0;
  284. left: 0;
  285. bottom: 0;
  286. box-sizing: border-box;
  287. }
  288. .title {
  289. background: rgba(255, 255, 255, 0.1);
  290. margin-bottom: 8px;
  291. padding: 8px;
  292. }
  293. </style>