index.vue 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. <template>
  2. <div style="height: 100%; padding: 10px 20px">
  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 size="mini" v-model="value1" clearable placeholder="请选择" popper-class="select">
  9. <el-option v-for="item in ChangZhan" :key="item.id" :value="item.id" :label="item.name">
  10. </el-option>
  11. </el-select>
  12. </div>
  13. </div>
  14. <div class="query-item">
  15. <div class="lable">日期:</div>
  16. <div class="search-input">
  17. <el-date-picker size="mini" v-model="date" type="date" placeholder="选择日期"
  18. popper-class="date-select" value-format="YYYY-MM-DD">
  19. </el-date-picker>
  20. </div>
  21. </div>
  22. <div class="query-actions">
  23. <el-button size="mini" round class="searchColor" @click="getTable">查 询</el-button>
  24. </div>
  25. </div>
  26. </div>
  27. <div class="table-box">
  28. <div class="leftContent">
  29. <span>{{ showTitle }}</span>
  30. </div>
  31. <el-table :data="tableData" stripe height="calc(100% - 40px)" size="mini">
  32. <el-table-column :sortable="item.field != 'nemCode' && item.field != 'recordDate'" header-align="center"
  33. :align="index < 2 ? 'center' : 'right'" v-for="(item, index) in tableDataColumn" :key="index"
  34. :prop="item.field" :label="item.name">
  35. </el-table-column>
  36. </el-table>
  37. </div>
  38. </div>
  39. </template>
  40. <script>
  41. import api1 from "@api/economic/index.js";
  42. import {
  43. getCurveIntervalfittingmainList
  44. } from "@api/wisdomOverhaul/energy/index.js";
  45. import dataJson from "./dataJson.json"
  46. export default {
  47. name: "Qxqjpcl",
  48. data() {
  49. return {
  50. ChangZhan: [],
  51. value1: "",
  52. date: "",
  53. showTitle: "曲线区间偏差率",
  54. tableLoading: true,
  55. tableData: [],
  56. tableDataColumn: []
  57. };
  58. },
  59. created() {
  60. this.ChangZhanVal();
  61. this.date = new Date().formatDate("yyyy-MM-dd");
  62. },
  63. methods: {
  64. // 获取表格数据
  65. getTable() {
  66. this.tableLoading = true;
  67. const param = {
  68. wpId: this.value1,
  69. recorddate: this.date,
  70. };
  71. getCurveIntervalfittingmainList(param).then(({
  72. data: res
  73. }) => {
  74. this.tableLoading = false;
  75. if (res.code === 200) {
  76. res.data.forEach((ele) => {
  77. ele.recordDate = this.date;
  78. });
  79. this.tableDataColumn = dataJson.data.column
  80. this.tableData = res.data || [];
  81. }
  82. });
  83. },
  84. // tab
  85. handleOpen(vl, index) {
  86. this.cur = index;
  87. this.showTitle = vl;
  88. this.date = new Date().formatDate(`yyyy-MM${index ? "-dd" : ""}`);
  89. this.getTable();
  90. },
  91. // 场站
  92. ChangZhanVal() {
  93. // this.tableData = dataJson.data || [];
  94. api1
  95. .getWpList({
  96. type: "-1",
  97. })
  98. .then((res) => {
  99. if (res.data.code === 200) {
  100. this.ChangZhan = res.data.data;
  101. this.value1 = res.data.data[0].id;
  102. this.getTable();
  103. }
  104. });
  105. },
  106. },
  107. };
  108. </script>
  109. <style scoped lang="less">
  110. .table-box {
  111. height: calc(100% - 80px);
  112. .leftContent {
  113. width: 242px;
  114. height: 45px;
  115. line-height: 45px;
  116. background: url("~@/assets/imgs/title_left_bg.png") no-repeat;
  117. span {
  118. font-size: 16px;
  119. font-family: Microsoft YaHei;
  120. font-weight: 400;
  121. color: #05bb4c;
  122. margin-left: 25px;
  123. }
  124. }
  125. }
  126. .query-actions {
  127. margin-left: 0 !important;
  128. }
  129. button {
  130. margin-left: 10px;
  131. background: rgba(67, 81, 107, 0.3);
  132. border: 1px solid #274934;
  133. color: #b3b3b3;
  134. }
  135. .searchColor {
  136. background-color: rgba(5, 187, 76, 0.2);
  137. border: 1px solid #3b6c53;
  138. color: #b3b3b3;
  139. font-size: 14px;
  140. &:hover {
  141. background-color: rgba(5, 187, 76, 0.5);
  142. color: #ffffff;
  143. }
  144. }
  145. .newspan {
  146. line-height: 30px;
  147. cursor: pointer;
  148. padding: 0 1vw;
  149. margin: 0 2px;
  150. color: #9ca5a8;
  151. transition: color 0.2s ease-in-out;
  152. position: relative;
  153. }
  154. .newspan:hover {
  155. background: linear-gradient(to top,
  156. rgba(5, 187, 76, 0.5),
  157. rgba(5, 187, 76, 0));
  158. color: white;
  159. position: relative;
  160. }
  161. .newspan:hover::after {
  162. content: "";
  163. position: absolute;
  164. width: 100%;
  165. height: 0.463vh;
  166. border: 0.093vh solid #05bb4c;
  167. border-top: 0;
  168. left: 0;
  169. bottom: 0;
  170. box-sizing: border-box;
  171. }
  172. .active {
  173. background: linear-gradient(to top,
  174. rgba(5, 187, 76, 0.5),
  175. rgba(5, 187, 76, 0));
  176. color: white;
  177. position: relative;
  178. }
  179. .active::after {
  180. content: "";
  181. position: absolute;
  182. width: 100%;
  183. height: 4px;
  184. border: 1px solid #05bb4c;
  185. border-top: 0;
  186. left: 0;
  187. bottom: 0;
  188. box-sizing: border-box;
  189. }
  190. .title {
  191. background: rgba(255, 255, 255, 0.1);
  192. margin-bottom: 8px;
  193. padding: 8px;
  194. }
  195. </style>