123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- import { mapMutations , mapGetters} from "vuex";
- export default {
- data() {
- return {
- pickerOptions: {
- disabledDate(time) {
- return time.getTime() > Date.now();
- },
- },
- FClist: {
- name: "",
- id: "",
- },
- loading:true,
- tableData: [],
- dialogTableVisible: false,
- beginDate: "2021-01-01",
- endDate: "2021-01-01",
- fc: "MHS_FDC",
- selectrowdate: {},
- histogram_Date: [],
- histogram_sers: [],
- h_Date:{},
- };
- },
- methods: {
- ...mapMutations(["loadingStore"]),
- /**
- * 查询风场
- */
- query_fc() {
- var newData = new Date();
- this.beginDate = this.BASE.getBzDate(newData.getTime(),-1);
- this.endDate = this.BASE.getBzDate(newData.getTime(),0);
- this.API.get("powercompare/windfarmAjax?").then((res) => {
- this.FClist = res.data;
- }).catch(e=>e);
- },
- /**
- * 获取数据
- */
- query_table() {
- this.API
- .get(
- "leaderboard/fittingtoplist?wpIps=" +
- this.fc +
- "&pageNum=" +
- 1 +
- "&pageSize=" +
- 10 +
- "&orderByColumn=" +
- "" +
- "&isAsc=" +
- "asc" +
- "&beginDate=" +
- this.beginDate +
- "&endDate=" +
- this.endDate
- )
- .then((res) => {
- this.tableData = res.data;
- this.loading=false;
- }).catch(e=>e);;
- },
- headStyle() {
- return "text-align:center";
- },
- /**
- * 矩阵选中 获取行数据
- *
- */
- changeFun(val) {
- this.$store.commit("loadingStore",true);
- let wt = [];
- this.histogram_Date = [];
- this.histogram_sers = [];
- if( Object.keys(val).length > 2){
- this.$message.error('只能选俩袄!');
- this.$refs.table_sty.clearSelection();
- this.histogram_sers = [];
- this.histogram_Date = [];
- return
- }else{
- for (let i = 0; i < Object.keys(val).length; i++) {
- wt.push(val[i].windturbine);
- }
- this.API
- .get(
- "leaderboard/fittingtopchart?wtIds=" +
- wt +
- "&beginDate=" +
- this.beginDate +
- "&endDate=" +
- this.endDate
- )
- .then((res) => {
- this.histogram_Date = [];
- this.h_Date = {};
- this.h_Date = res.data;
- this.histogram_sers = res.data.sers;
-
- }).catch(e=>e);
- }
- this.$store.commit('loadingStore',false);
-
- },
- toExcel() {
- this.BASE.excelHelp("tableData", "拟合优度排行榜", ".xls", true);
- },
- /**
- * 转换格式
- *
- */
- filter_bdate(cellValue) {
- let date = new Date(cellValue.beginDate);
- return this.BASE.getBzDate(date,0);
- },
- filter_edate(cellValue) {
- let date = new Date(cellValue.endDate);
- return this.BASE.getBzDate(date,0);
- },
- filter_generatingCapacity(cellValue) {
- return parseFloat(cellValue.power).toFixed(2);
- },
- filter_power(cellValue) {
- return parseFloat(cellValue.power).toFixed(2);
- },
- /**
- * 改变数据格式,调取曲线图
- */
- curveCreation() {
- let that = this;
- let design = [];
- this.dialogTableVisible = true;
- for (let j = 0; j < Object.keys(this.histogram_sers).length; j++) {
-
- let name1 = that.histogram_sers[j];
- design = that.h_Date[name1];
- that.histogram_Date.push({
- type: "line",
- name: name1,
- stack: "总量",
- data: design,
- });
- }
- this.$nextTick(function () {
- this.ECZM.zzt_cdbqd('histogram' , this.histogram_sers , this.histogram_Date);
- this.$refs.table_sty.clearSelection();
- this.histogram_sers = [];
- this.histogram_Date = [];
- });
-
- },
- },
- mounted() {
- this.query_fc();
- this.query_table();
- },
- };
|