index.vue 5.8 KB

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