goodnessfitRank.js 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. import { mapMutations , mapGetters} from "vuex";
  2. export default {
  3. data() {
  4. return {
  5. pickerOptions: {
  6. disabledDate(time) {
  7. return time.getTime() > Date.now();
  8. },
  9. },
  10. FClist: {
  11. name: "",
  12. id: "",
  13. },
  14. loading:true,
  15. tableData: [],
  16. dialogTableVisible: false,
  17. beginDate: "2021-01-01",
  18. endDate: "2021-01-01",
  19. fc: "MHS_FDC",
  20. selectrowdate: {},
  21. histogram_Date: [],
  22. histogram_sers: [],
  23. h_Date:{},
  24. };
  25. },
  26. methods: {
  27. ...mapMutations(["loadingStore"]),
  28. /**
  29. * 查询风场
  30. */
  31. query_fc() {
  32. var newData = new Date();
  33. this.beginDate = this.BASE.getBzDate(newData.getTime(),-1);
  34. this.endDate = this.BASE.getBzDate(newData.getTime(),0);
  35. this.API.get("powercompare/windfarmAjax?").then((res) => {
  36. this.FClist = res.data;
  37. }).catch(e=>e);
  38. },
  39. /**
  40. * 获取数据
  41. */
  42. query_table() {
  43. this.API
  44. .get(
  45. "leaderboard/fittingtoplist?wpIps=" +
  46. this.fc +
  47. "&pageNum=" +
  48. 1 +
  49. "&pageSize=" +
  50. 10 +
  51. "&orderByColumn=" +
  52. "" +
  53. "&isAsc=" +
  54. "asc" +
  55. "&beginDate=" +
  56. this.beginDate +
  57. "&endDate=" +
  58. this.endDate
  59. )
  60. .then((res) => {
  61. this.tableData = res.data;
  62. this.loading=false;
  63. }).catch(e=>e);;
  64. },
  65. headStyle() {
  66. return "text-align:center";
  67. },
  68. /**
  69. * 矩阵选中 获取行数据
  70. *
  71. */
  72. changeFun(val) {
  73. this.$store.commit("loadingStore",true);
  74. let wt = [];
  75. this.histogram_Date = [];
  76. this.histogram_sers = [];
  77. if( Object.keys(val).length > 2){
  78. this.$message.error('只能选俩袄!');
  79. this.$refs.table_sty.clearSelection();
  80. this.histogram_sers = [];
  81. this.histogram_Date = [];
  82. return
  83. }else{
  84. for (let i = 0; i < Object.keys(val).length; i++) {
  85. wt.push(val[i].windturbine);
  86. }
  87. this.API
  88. .get(
  89. "leaderboard/fittingtopchart?wtIds=" +
  90. wt +
  91. "&beginDate=" +
  92. this.beginDate +
  93. "&endDate=" +
  94. this.endDate
  95. )
  96. .then((res) => {
  97. this.histogram_Date = [];
  98. this.h_Date = {};
  99. this.h_Date = res.data;
  100. this.histogram_sers = res.data.sers;
  101. }).catch(e=>e);
  102. }
  103. this.$store.commit('loadingStore',false);
  104. },
  105. toExcel() {
  106. this.BASE.excelHelp("tableData", "拟合优度排行榜", ".xls", true);
  107. },
  108. /**
  109. * 转换格式
  110. *
  111. */
  112. filter_bdate(cellValue) {
  113. let date = new Date(cellValue.beginDate);
  114. return this.BASE.getBzDate(date,0);
  115. },
  116. filter_edate(cellValue) {
  117. let date = new Date(cellValue.endDate);
  118. return this.BASE.getBzDate(date,0);
  119. },
  120. filter_generatingCapacity(cellValue) {
  121. return parseFloat(cellValue.power).toFixed(2);
  122. },
  123. filter_power(cellValue) {
  124. return parseFloat(cellValue.power).toFixed(2);
  125. },
  126. /**
  127. * 改变数据格式,调取曲线图
  128. */
  129. curveCreation() {
  130. let that = this;
  131. let design = [];
  132. this.dialogTableVisible = true;
  133. for (let j = 0; j < Object.keys(this.histogram_sers).length; j++) {
  134. let name1 = that.histogram_sers[j];
  135. design = that.h_Date[name1];
  136. that.histogram_Date.push({
  137. type: "line",
  138. name: name1,
  139. stack: "总量",
  140. data: design,
  141. });
  142. }
  143. this.$nextTick(function () {
  144. this.ECZM.zzt_cdbqd('histogram' , this.histogram_sers , this.histogram_Date);
  145. this.$refs.table_sty.clearSelection();
  146. this.histogram_sers = [];
  147. this.histogram_Date = [];
  148. });
  149. },
  150. },
  151. mounted() {
  152. this.query_fc();
  153. this.query_table();
  154. },
  155. };