index.vue 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388
  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. <div class="date">
  45. <div
  46. class="day"
  47. :class="current === '1' ? 'active' : ''"
  48. @click="handleChange('1')"
  49. >
  50. 小于3米风速
  51. </div>
  52. <div
  53. class="mouth"
  54. :class="current === '2' ? 'active' : ''"
  55. @click="handleChange('2')"
  56. >
  57. 大于3米风速
  58. </div>
  59. <div
  60. class="year"
  61. :class="current === '3' ? 'active' : ''"
  62. @click="handleChange('3')"
  63. >
  64. 大于4米风速
  65. </div>
  66. </div>
  67. <el-button round size="mini" class="searchColor" @click="getTableDate"
  68. >搜索</el-button
  69. >
  70. <!-- <el-button round size="mini">导出</el-button> -->
  71. </div>
  72. <div class="data-bodys">
  73. <div class="line clearfix">
  74. <div class="leftContent left"><span>状态转换率</span></div>
  75. <div class="rightContent right"></div>
  76. </div>
  77. <div class="economicTable">
  78. <el-table
  79. :data="tableData"
  80. style="width: 100%"
  81. size="mini"
  82. stripe
  83. height="85vh"
  84. >
  85. <el-table-column
  86. align="center"
  87. prop="wpid"
  88. label="风场"
  89. width="200"
  90. sortable
  91. ></el-table-column>
  92. <el-table-column
  93. align="center"
  94. prop="wfz"
  95. label="5分钟(次)"
  96. sortable
  97. ></el-table-column>
  98. <el-table-column
  99. align="center"
  100. prop="wfzfwl"
  101. label="5分钟(率)"
  102. sortable
  103. ></el-table-column>
  104. <el-table-column
  105. align="center"
  106. prop="sfz"
  107. label="10分钟(次)"
  108. sortable
  109. ></el-table-column>
  110. <el-table-column
  111. align="center"
  112. prop="sfzfwl"
  113. label="10分钟(率)"
  114. sortable
  115. ></el-table-column>
  116. <el-table-column
  117. align="center"
  118. prop="swfz"
  119. label="15分钟(次)"
  120. sortable
  121. ></el-table-column>
  122. <el-table-column
  123. align="center"
  124. prop="swfzfwl"
  125. label="15分钟(率)"
  126. sortable
  127. ></el-table-column>
  128. <el-table-column
  129. align="center"
  130. prop="esfz"
  131. label="20分钟(次)"
  132. sortable
  133. ></el-table-column>
  134. <el-table-column
  135. align="center"
  136. prop="esfzfwl"
  137. label="20分钟(率)"
  138. sortable
  139. ></el-table-column>
  140. </el-table>
  141. </div>
  142. </div>
  143. </div>
  144. </template>
  145. <script>
  146. import dayjs from "dayjs";
  147. import { companys, conversionRate } from "@/api/curveAnalyse";
  148. export default {
  149. name: "curveAnalyse",
  150. components: {},
  151. data() {
  152. return {
  153. starTime: "",
  154. endTime: "",
  155. company: "",
  156. companyOptions: [],
  157. tableData: [],
  158. current: "1",
  159. };
  160. },
  161. filters: {},
  162. computed: {},
  163. created() {
  164. let date = new Date();
  165. date.setDate(1);
  166. let month = parseInt(date.getMonth() + 1);
  167. let day = date.getDate();
  168. if (month < 10) {
  169. month = "0" + month;
  170. }
  171. if (day < 10) {
  172. day = "0" + day;
  173. }
  174. this.starTime = date.getFullYear() + "-" + month + "-" + day;
  175. this.endTime = dayjs(new Date().getTime()).format("YYYY-MM-DD");
  176. this.initialization();
  177. },
  178. methods: {
  179. initialization() {
  180. companys().then(({ data: res }) => {
  181. this.companyOptions = res.data;
  182. this.company = res.data[0].id;
  183. this.getTableDate();
  184. });
  185. },
  186. getTableDate() {
  187. conversionRate({
  188. companyId: this.company,
  189. beginDate: this.starTime,
  190. endDate: this.endTime,
  191. }).then(({ data: res }) => {
  192. if (res) {
  193. const current = this.current;
  194. if (current == "1") {
  195. this.tableData = res.data.小于3米风速;
  196. } else if (current == "2") {
  197. this.tableData = res.data.大于3米风速;
  198. } else {
  199. this.tableData = res.data.大于4米风速;
  200. }
  201. }
  202. });
  203. },
  204. handleChange(val) {
  205. this.current = val;
  206. this.getTableDate();
  207. },
  208. },
  209. mounted() {},
  210. beforeUnmount() {},
  211. };
  212. </script>
  213. <style lang="less" scoped>
  214. .title {
  215. display: flex;
  216. flex-direction: row;
  217. align-items: center;
  218. margin-top: 10px;
  219. padding-left: 20px;
  220. .station {
  221. display: flex;
  222. flex-direction: row;
  223. align-items: center;
  224. font-size: 14px;
  225. font-family: Microsoft YaHei;
  226. font-weight: 400;
  227. color: #b3b3b3;
  228. margin-left: 10px;
  229. }
  230. .search-input {
  231. margin-left: 10px;
  232. }
  233. .but {
  234. display: flex;
  235. flex-direction: row;
  236. align-content: center;
  237. margin-left: 20px;
  238. }
  239. .buttons {
  240. background-color: rgba(5, 187, 76, 0.2);
  241. border: 1px solid #3b6c53;
  242. color: #b3b3b3;
  243. font-size: 14px;
  244. &:hover {
  245. background-color: rgba(5, 187, 76, 0.5);
  246. color: #ffffff;
  247. }
  248. }
  249. }
  250. .data-bodys {
  251. display: flex;
  252. flex-direction: column;
  253. background-color: rgba(0, 0, 0, 0.45);
  254. border-radius: 5px;
  255. padding: 5px;
  256. }
  257. .parcel-box {
  258. padding: 0 20px;
  259. box-sizing: border-box;
  260. .line {
  261. padding-bottom: 5px;
  262. .leftContent {
  263. width: 242px;
  264. height: 41px;
  265. line-height: 41px;
  266. background: url("../../../../assets/imgs/title_left_bg.png");
  267. span {
  268. font-size: 16px;
  269. font-family: Microsoft YaHei;
  270. font-weight: 400;
  271. color: #ffffff;
  272. margin-left: 25px;
  273. }
  274. }
  275. .rightContent {
  276. width: 212px;
  277. height: 28px;
  278. margin-top: 13px;
  279. background: url("../../../../assets/imgs/title_right_bg.png");
  280. }
  281. }
  282. }
  283. .clearfix::after {
  284. content: "";
  285. clear: both;
  286. height: 0;
  287. line-height: 0;
  288. visibility: hidden;
  289. display: block;
  290. }
  291. .clearfix {
  292. zoom: 1;
  293. }
  294. .left {
  295. float: left;
  296. }
  297. .right {
  298. float: right;
  299. }
  300. .searchColor {
  301. background-color: rgba(5, 187, 76, 0.2);
  302. border: 1px solid #3b6c53;
  303. color: #b3b3b3;
  304. font-size: 14px;
  305. &:hover {
  306. background-color: rgba(5, 187, 76, 0.5);
  307. color: #ffffff;
  308. }
  309. }
  310. .date {
  311. display: flex;
  312. flex-direction: row;
  313. align-items: center;
  314. font-size: 12px;
  315. font-family: Microsoft YaHei;
  316. font-weight: 400;
  317. color: #b3b3b3;
  318. margin: 0 15px;
  319. .day {
  320. display: flex;
  321. align-items: center;
  322. justify-content: center;
  323. width: 100px;
  324. height: 26px;
  325. border: 1px solid #3b6c53;
  326. border-radius: 11px 0px 0px 11px;
  327. background: rgba(67, 81, 107, 0.2);
  328. &.active {
  329. background: rgba(5, 187, 76, 0.4);
  330. color: #ffffff;
  331. }
  332. }
  333. .mouth {
  334. display: flex;
  335. align-items: center;
  336. justify-content: center;
  337. width: 100px;
  338. height: 26px;
  339. border-top: 1px solid #3b6c53;
  340. border-bottom: 1px solid #3b6c53;
  341. background: rgba(67, 81, 107, 0.2);
  342. &.active {
  343. background: rgba(5, 187, 76, 0.4);
  344. color: #ffffff;
  345. }
  346. }
  347. .year {
  348. display: flex;
  349. align-items: center;
  350. justify-content: center;
  351. width: 100px;
  352. height: 26px;
  353. border: 1px solid #3b6c53;
  354. border-radius: 0px 11px 11px 0px;
  355. background: rgba(67, 81, 107, 0.2);
  356. &.active {
  357. background: rgba(5, 187, 76, 0.4);
  358. color: #ffffff;
  359. }
  360. }
  361. }
  362. </style>