index.vue 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  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. value-format="YYYY-MM-DD"
  25. placeholder="选择日期"
  26. popper-class="date-select"
  27. >
  28. </el-date-picker>
  29. </div>
  30. </div>
  31. <div class="station">
  32. 结束日期
  33. <div class="search-input">
  34. <el-date-picker
  35. v-model="endTime"
  36. type="date"
  37. value-format="YYYY-MM-DD"
  38. placeholder="选择日期"
  39. popper-class="date-select"
  40. >
  41. </el-date-picker>
  42. </div>
  43. </div>
  44. <el-button round size="mini" class="searchColor" @click="getTableDate"
  45. >搜索</el-button
  46. >
  47. <!-- <el-button round size="mini">导出</el-button> -->
  48. </div>
  49. <div class="data-bodys">
  50. <div class="line clearfix">
  51. <div class="leftContent left"><span>消缺及时率</span></div>
  52. <div class="rightContent right"></div>
  53. </div>
  54. <div class="economicTable">
  55. <el-table
  56. :data="tableData"
  57. style="width: 100%"
  58. size="mini"
  59. stripe
  60. height="85vh"
  61. >
  62. <el-table-column
  63. align="center"
  64. prop="wpid"
  65. label="风场"
  66. width="200"
  67. sortable
  68. ></el-table-column>
  69. <el-table-column
  70. align="center"
  71. prop="gzCount"
  72. label="故障次数"
  73. sortable
  74. ></el-table-column>
  75. <el-table-column
  76. align="center"
  77. prop="xqCount"
  78. label="消缺及时次数"
  79. sortable
  80. ></el-table-column>
  81. <el-table-column
  82. align="center"
  83. prop="xqjsl"
  84. label="消缺及时次数"
  85. sortable
  86. ></el-table-column>
  87. </el-table>
  88. </div>
  89. </div>
  90. </div>
  91. </template>
  92. <script>
  93. import dayjs from "dayjs";
  94. import { companys, eliminatRate } from "@/api/curveAnalyse";
  95. export default {
  96. name: "curveAnalyse",
  97. components: {},
  98. data() {
  99. return {
  100. starTime: "",
  101. endTime: "",
  102. company: "",
  103. companyOptions: [],
  104. tableData: [],
  105. };
  106. },
  107. watch: {},
  108. filters: {},
  109. computed: {},
  110. created() {
  111. let date = new Date();
  112. date.setDate(1);
  113. let month = parseInt(date.getMonth() + 1);
  114. let day = date.getDate();
  115. if (month < 10) {
  116. month = "0" + month;
  117. }
  118. if (day < 10) {
  119. day = "0" + day;
  120. }
  121. this.starTime = date.getFullYear() + "-" + month + "-" + day;
  122. this.endTime = dayjs(new Date().getTime()).format("YYYY-MM-DD");
  123. this.initialization();
  124. },
  125. methods: {
  126. initialization() {
  127. companys().then(({ data: res }) => {
  128. this.companyOptions = res.data;
  129. this.company = res.data[0].id;
  130. this.getTableDate();
  131. });
  132. },
  133. getTableDate() {
  134. eliminatRate({
  135. companyId: this.company,
  136. beginDate: this.starTime,
  137. endDate: this.endTime,
  138. }).then(({ data: res }) => {
  139. if (res) {
  140. this.tableData = res.data;
  141. }
  142. });
  143. },
  144. },
  145. mounted() {},
  146. beforeUnmount() {},
  147. };
  148. </script>
  149. <style lang="less" scoped>
  150. .title {
  151. display: flex;
  152. flex-direction: row;
  153. align-items: center;
  154. margin-top: 10px;
  155. padding-left: 20px;
  156. .station {
  157. display: flex;
  158. flex-direction: row;
  159. align-items: center;
  160. font-size: 14px;
  161. font-family: Microsoft YaHei;
  162. font-weight: 400;
  163. color: #b3b3b3;
  164. margin-left: 10px;
  165. }
  166. .search-input {
  167. margin-left: 10px;
  168. }
  169. .but {
  170. display: flex;
  171. flex-direction: row;
  172. align-content: center;
  173. margin-left: 20px;
  174. }
  175. .buttons {
  176. background-color: rgba(5, 187, 76, 0.2);
  177. border: 1px solid #3b6c53;
  178. color: #b3b3b3;
  179. font-size: 14px;
  180. &:hover {
  181. background-color: rgba(5, 187, 76, 0.5);
  182. color: #ffffff;
  183. }
  184. }
  185. }
  186. .data-bodys {
  187. display: flex;
  188. flex-direction: column;
  189. background-color: rgba(0, 0, 0, 0.45);
  190. border-radius: 5px;
  191. padding: 5px;
  192. }
  193. .parcel-box {
  194. padding: 0 20px;
  195. box-sizing: border-box;
  196. .line {
  197. padding-bottom: 5px;
  198. .leftContent {
  199. width: 242px;
  200. height: 41px;
  201. line-height: 41px;
  202. background: url("../../../../assets/imgs/title_left_bg.png");
  203. span {
  204. font-size: 16px;
  205. font-family: Microsoft YaHei;
  206. font-weight: 400;
  207. color: #ffffff;
  208. margin-left: 25px;
  209. }
  210. }
  211. .rightContent {
  212. width: 212px;
  213. height: 28px;
  214. margin-top: 13px;
  215. background: url("../../../../assets/imgs/title_right_bg.png");
  216. }
  217. }
  218. }
  219. .clearfix::after {
  220. content: "";
  221. clear: both;
  222. height: 0;
  223. line-height: 0;
  224. visibility: hidden;
  225. display: block;
  226. }
  227. .clearfix {
  228. zoom: 1;
  229. }
  230. .left {
  231. float: left;
  232. }
  233. .right {
  234. float: right;
  235. }
  236. .searchColor {
  237. background-color: rgba(5, 187, 76, 0.2);
  238. border: 1px solid #3b6c53;
  239. color: #b3b3b3;
  240. font-size: 14px;
  241. margin-left: 10px;
  242. &:hover {
  243. background-color: rgba(5, 187, 76, 0.5);
  244. color: #ffffff;
  245. }
  246. }
  247. </style>