index.vue 5.4 KB

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