index.vue 8.8 KB

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