index.vue 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314
  1. <template>
  2. <div class="parcel-box">
  3. <div class="title">
  4. <el-select
  5. size="mini"
  6. v-model="company"
  7. placeholder="请选择"
  8. @change="getTableDate"
  9. >
  10. <el-option
  11. v-for="item in companyOptions"
  12. :key="item.id"
  13. :label="item.aname"
  14. :value="item.id"
  15. >
  16. </el-option>
  17. </el-select>
  18. <div class="station">
  19. 开始日期
  20. <div class="search-input">
  21. <el-date-picker
  22. v-model="starTime"
  23. type="date"
  24. size="mini"
  25. value-format="YYYY-MM-DD"
  26. placeholder="选择日期"
  27. popper-class="date-select"
  28. >
  29. </el-date-picker>
  30. </div>
  31. </div>
  32. <div class="station">
  33. 结束日期
  34. <div class="search-input">
  35. <el-date-picker
  36. v-model="endTime"
  37. type="date"
  38. size="mini"
  39. value-format="YYYY-MM-DD"
  40. placeholder="选择日期"
  41. popper-class="date-select"
  42. >
  43. </el-date-picker>
  44. </div>
  45. </div>
  46. <el-button round size="mini" class="searchColor" @click="getTableDate"
  47. >搜 索</el-button
  48. >
  49. <!-- <el-button round size="mini">导出</el-button> -->
  50. </div>
  51. <div class="data-bodys">
  52. <div class="line clearfix">
  53. <div class="leftContent left"><span>复位及时率</span></div>
  54. </div>
  55. <div class="economicTable">
  56. <el-table
  57. :data="tableData"
  58. style="width: 100%"
  59. size="mini"
  60. stripe
  61. height="100%"
  62. >
  63. <el-table-column
  64. align="center"
  65. prop="unit"
  66. label="风场"
  67. width="200"
  68. sortable
  69. ></el-table-column>
  70. <el-table-column
  71. align="center"
  72. prop="five"
  73. label="5分钟 / 复位次数(次)"
  74. sortable
  75. ></el-table-column>
  76. <el-table-column
  77. align="center"
  78. prop="fives"
  79. label="5分钟 / 复位率(%)"
  80. sortable
  81. ></el-table-column>
  82. <el-table-column
  83. align="center"
  84. prop="ten"
  85. label="10分钟 / 复位次数(次)"
  86. sortable
  87. ></el-table-column>
  88. <el-table-column
  89. align="center"
  90. prop="tens"
  91. label="10分钟 / 复位率(%)"
  92. sortable
  93. ></el-table-column>
  94. <el-table-column
  95. align="center"
  96. prop="fifteen"
  97. label="15分钟 / 复位次数(次)"
  98. sortable
  99. ></el-table-column>
  100. <el-table-column
  101. align="center"
  102. prop="fifteens"
  103. label="15分钟 / 复位率(%)"
  104. sortable
  105. ></el-table-column>
  106. <el-table-column
  107. align="center"
  108. prop="twenty"
  109. label="20分钟 / 复位次数(次)"
  110. sortable
  111. ></el-table-column>
  112. <el-table-column
  113. align="center"
  114. prop="twentys"
  115. label="20分钟 / 复位率(%)"
  116. sortable
  117. ></el-table-column>
  118. </el-table>
  119. </div>
  120. </div>
  121. </div>
  122. </template>
  123. <script>
  124. import dayjs from "dayjs";
  125. import { companys, timelyRate } from "@/api/curveAnalyse";
  126. export default {
  127. name: "restorationEfficiency",
  128. components: {},
  129. data() {
  130. return {
  131. starTime: "",
  132. endTime: "",
  133. company: "",
  134. companyOptions: [],
  135. tableData: [],
  136. };
  137. },
  138. watch: {},
  139. filters: {},
  140. computed: {},
  141. created() {
  142. let date = new Date();
  143. date.setDate(1);
  144. let month = parseInt(date.getMonth() + 1);
  145. let day = date.getDate();
  146. if (month < 10) {
  147. month = "0" + month;
  148. }
  149. if (day < 10) {
  150. day = "0" + day;
  151. }
  152. this.starTime = dayjs().add(-1, "day").format("YYYY-MM-DD");
  153. this.endTime = dayjs().format("YYYY-MM-DD");
  154. this.initialization();
  155. },
  156. methods: {
  157. initialization() {
  158. companys().then(({ data: res }) => {
  159. this.companyOptions = res.data;
  160. this.company = res.data[0].id;
  161. this.getTableDate();
  162. });
  163. },
  164. getTableDate() {
  165. timelyRate({
  166. companyId: this.company,
  167. beginDate: this.starTime,
  168. endDate: this.endTime,
  169. }).then(({ data: res }) => {
  170. if (res) {
  171. let data = [];
  172. res.data.forEach((item, index) => {
  173. data[index] = {
  174. unit: item.wpid,
  175. five: item.wfz,
  176. fives: item.wfzfwl,
  177. ten: item.sfz,
  178. tens: item.sfzfwl,
  179. fifteen: item.swfz,
  180. fifteens: item.swfzfwl,
  181. twenty: item.esfz,
  182. twentys: item.esfzfwl,
  183. is_light: false,
  184. };
  185. });
  186. this.tableData = data;
  187. }
  188. });
  189. },
  190. },
  191. mounted() {},
  192. beforeUnmount() {},
  193. };
  194. </script>
  195. <style lang="less" scoped>
  196. .title {
  197. display: flex;
  198. flex-direction: row;
  199. align-items: center;
  200. margin-top: 10px;
  201. .station {
  202. display: flex;
  203. flex-direction: row;
  204. align-items: center;
  205. font-size: 14px;
  206. font-family: Microsoft YaHei;
  207. font-weight: 400;
  208. color: #b3b3b3;
  209. margin-left: 10px;
  210. }
  211. .search-input {
  212. margin-left: 10px;
  213. }
  214. .but {
  215. display: flex;
  216. flex-direction: row;
  217. align-content: center;
  218. margin-left: 20px;
  219. }
  220. .buttons {
  221. background-color: rgba(5, 187, 76, 0.2);
  222. border: 1px solid #3b6c53;
  223. color: #b3b3b3;
  224. font-size: 14px;
  225. &:hover {
  226. background-color: rgba(5, 187, 76, 0.5);
  227. color: #ffffff;
  228. }
  229. }
  230. }
  231. .parcel-box {
  232. height: 100%;
  233. width: 100%;
  234. padding: 0 30px;
  235. padding-bottom: 10px;
  236. .line {
  237. padding-bottom: 5px;
  238. .leftContent {
  239. width: 242px;
  240. height: 41px;
  241. line-height: 41px;
  242. background: url("~@/assets/imgs/title_left_bg1.png") no-repeat;
  243. span {
  244. font-size: 16px;
  245. font-family: Microsoft YaHei;
  246. font-weight: 400;
  247. color: #05bb4c;
  248. margin-left: 25px;
  249. }
  250. }
  251. .rightContent {
  252. width: 212px;
  253. height: 28px;
  254. margin-top: 13px;
  255. background: url("../../../../assets/imgs/title_right_bg.png");
  256. }
  257. }
  258. .data-bodys {
  259. display: flex;
  260. flex-direction: column;
  261. background-color: rgba(0, 0, 0, 0.45);
  262. border-radius: 5px;
  263. height: calc(100% - 45px);
  264. padding-top: 10px;
  265. .economicTable {
  266. width: 100%;
  267. height: calc(100% - 40px);
  268. }
  269. }
  270. }
  271. .clearfix::after {
  272. content: "";
  273. clear: both;
  274. height: 0;
  275. line-height: 0;
  276. visibility: hidden;
  277. display: block;
  278. }
  279. .clearfix {
  280. zoom: 1;
  281. }
  282. .left {
  283. float: left;
  284. }
  285. .right {
  286. float: right;
  287. }
  288. .searchColor {
  289. background-color: rgba(5, 187, 76, 0.2);
  290. border: 1px solid #3b6c53;
  291. color: #b3b3b3;
  292. font-size: 14px;
  293. margin-left: 10px;
  294. &:hover {
  295. background-color: rgba(5, 187, 76, 0.5);
  296. color: #ffffff;
  297. }
  298. }
  299. </style>