xqjsl.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. <template>
  2. <div>
  3. <div class="query mg-b-8">
  4. <div class="query-items">
  5. <div class="query-item">
  6. <div class="lable">开始日期:</div>
  7. <div class="search-input">
  8. <el-date-picker
  9. v-model="value1"
  10. @change="BeginChange(value1)"
  11. type="date"
  12. value-format="YYYY-MM-DD"
  13. placeholder="选择日期"
  14. popper-class="date-select"
  15. >
  16. </el-date-picker>
  17. </div>
  18. </div>
  19. <div class="query-item">
  20. <div class="lable">结束日期:</div>
  21. <div class="search-input">
  22. <el-date-picker
  23. v-model="value2"
  24. @change="EndChange(value2)"
  25. type="date"
  26. value-format="YYYY-MM-DD"
  27. placeholder="选择日期"
  28. popper-class="date-select"
  29. >
  30. </el-date-picker>
  31. <div class="unit svg-icon svg-icon-gray">
  32. <svg-icon :svgid="''" />
  33. </div>
  34. </div>
  35. </div>
  36. </div>
  37. <div class="query-actions">
  38. <el-button class="btn green" @click="handleSubmit">计算</el-button>
  39. </div>
  40. </div>
  41. <div class="table-box">
  42. <ComTable
  43. :data="tableData"
  44. :pageSize="20"
  45. height="85vh"
  46. v-loading="tableLoading"
  47. element-loading-text="拼命加载中"
  48. element-loading-background="rgba(0, 0, 0, 0.8)"
  49. ></ComTable>
  50. </div>
  51. </div>
  52. </template>
  53. <script>
  54. import ComTable from "@/components/coms/table/table.vue";
  55. import api from "@api/economic/index.js";
  56. export default {
  57. name: "fwjsl",
  58. components: { ComTable },
  59. data() {
  60. return {
  61. value1: "",
  62. value2: "",
  63. tableLoading: true,
  64. tableData: {
  65. column: [
  66. {
  67. name: "风电场",
  68. field: "wpid",
  69. is_num: false,
  70. is_light: false,
  71. sortable: true,
  72. },
  73. {
  74. name: "故障次数(次)",
  75. field: "gzCount",
  76. is_num: false,
  77. is_light: false,
  78. sortable: true,
  79. },
  80. {
  81. name: "消缺及时次数(次)",
  82. field: "xqCount",
  83. is_num: false,
  84. is_light: false,
  85. sortable: true,
  86. },
  87. {
  88. name: "消缺及时次数(次)",
  89. field: "xqjsl",
  90. is_num: false,
  91. is_light: false,
  92. sortable: true,
  93. },
  94. ],
  95. date: [],
  96. },
  97. };
  98. },
  99. mounted() {
  100. this.getTable();
  101. },
  102. created() {
  103. this.value1 = this.getTime(1);
  104. this.value2 = this.getTime(2);
  105. },
  106. methods: {
  107. // 获取表格数据
  108. getTable() {
  109. let that = this;
  110. that.tableLoading = true;
  111. api
  112. .threerateXqjsl({
  113. beginDate: this.value1,
  114. endDate: this.value2,
  115. })
  116. .then((res) => {
  117. this.tableLoading = false;
  118. console.log(res);
  119. if (res.code === 200) {
  120. this.tableData.data = res.data;
  121. }
  122. });
  123. // that.API.requestData({
  124. // method: "GET",
  125. // baseURL: "http://10.155.32.4:8034/",
  126. // subUrl: "/threerate/xqjsl",
  127. // data: {
  128. // beginDate: this.value1,
  129. // endDate: this.value2
  130. // },
  131. // success(res) {
  132. // that.tableLoading = false;
  133. // console.log(res);
  134. // if (res.code === 200) {
  135. // that.tableData.data = res.data;
  136. // }
  137. // }
  138. // });
  139. },
  140. // 开始日期:
  141. BeginChange(vl) {
  142. this.value1 = vl;
  143. },
  144. // 结束日期
  145. EndChange(vl) {
  146. this.value1 = vl;
  147. },
  148. // 计算
  149. handleSubmit() {
  150. if (this.value1 == "" || this.value1 == null) {
  151. this.$message.error("请选择开始时间");
  152. } else if (this.value2 == "" || this.value2 == null) {
  153. this.$message.error("请选择结束时间");
  154. } else {
  155. this.getTable();
  156. }
  157. },
  158. // 默认开始时间
  159. getTime(val) {
  160. //时间戳处理,val=1是默认开始时间(当前月第一天),val=2是默认结束时间(今天)
  161. var date = new Date();
  162. var year = date.getFullYear(),
  163. month = date.getMonth() + 1,
  164. day = date.getDate();
  165. month >= 1 && month <= 9 ? (month = "0" + month) : "";
  166. day >= 0 && day <= 9 ? (day = "0" + day) : "";
  167. var begin = year + "-" + month + "-01";
  168. var end = year + "-" + month + "-" + day;
  169. if (val == 1) {
  170. return begin;
  171. } else if (val == 2) {
  172. return end;
  173. }
  174. },
  175. },
  176. };
  177. </script>