|
@@ -476,7 +476,9 @@ export default {
|
|
|
created() {
|
|
|
this.pickerTime = dayjs().format("YYYY-MM");
|
|
|
},
|
|
|
- mounted() {},
|
|
|
+ mounted() {
|
|
|
+ this.getTableData();
|
|
|
+ },
|
|
|
computed: {},
|
|
|
methods: {
|
|
|
handleSizeChange(val) {
|
|
@@ -491,34 +493,122 @@ export default {
|
|
|
|
|
|
getTableData() {
|
|
|
let that = this;
|
|
|
- let params = {
|
|
|
- pageNum: that.page.currentPage,
|
|
|
- pageSize: that.page.pagesize,
|
|
|
- years: that.pickerTime
|
|
|
- ? this.pickerTime.substring(0, this.pickerTime.indexOf("-")) * 1
|
|
|
- : null,
|
|
|
- month: that.pickerTime
|
|
|
- ? this.pickerTime.substring(
|
|
|
- this.pickerTime.indexOf("-") + 1,
|
|
|
- this.pickerTime.length
|
|
|
- ) * 1
|
|
|
- : null,
|
|
|
- };
|
|
|
- if (that.tabIndex == -1) {
|
|
|
- stationKPI(params).then((res) => {
|
|
|
- if (res) {
|
|
|
- that.stationControlData = res.data.records;
|
|
|
- that.page.total = res.data.total;
|
|
|
- }
|
|
|
- });
|
|
|
- } else {
|
|
|
- stationXklKPI(params).then((res) => {
|
|
|
- if (res) {
|
|
|
- that.stationControlData = res.data.records;
|
|
|
- that.page.total = res.data.total;
|
|
|
- }
|
|
|
- });
|
|
|
- }
|
|
|
+ that.stationControlData = [
|
|
|
+ ...new Array(5).fill({
|
|
|
+ stationName: "12风电场",
|
|
|
+ years: "2024",
|
|
|
+ month: "5",
|
|
|
+ rssbsg_value: 5,
|
|
|
+ rssbsg_mark: 5,
|
|
|
+ sbylza_value: 5,
|
|
|
+ sbylza_mark: 5,
|
|
|
+ fnlyl_value: "50%",
|
|
|
+ fnlyl_mark: 5,
|
|
|
+ jhjxssl_value: "50%",
|
|
|
+ jhjxssl_mark: 5,
|
|
|
+ fjhjxssl_value: "50%",
|
|
|
+ fjhjxssl_mark: 5,
|
|
|
+ xdssl_value: "50%",
|
|
|
+ xdssl_mark: 5,
|
|
|
+ xnssl_value: "50%",
|
|
|
+ xnssl_mark: 5,
|
|
|
+ fwjsl_value: "50%",
|
|
|
+ fwjsl_mark: 5,
|
|
|
+ ztzhjsl_value: "50%",
|
|
|
+ ztzhjsl_mark: 5,
|
|
|
+ gzcljsl_value: "50%",
|
|
|
+ gzcljsl_mark: 5,
|
|
|
+ mtbf_value: 5,
|
|
|
+ mtbf_mark: 5,
|
|
|
+ mttf_value: 5,
|
|
|
+ mttf_mark: 5,
|
|
|
+ mttr_value: 5,
|
|
|
+ mttr_mark: 5,
|
|
|
+ gnlyl_value: "50%",
|
|
|
+ gnlyl_mark: 5,
|
|
|
+ jhjxssl_value: "50%",
|
|
|
+ jhjxssl_mark: 5,
|
|
|
+ fjhjxssl_value: "50%",
|
|
|
+ fjhjxssl_mark: 5,
|
|
|
+ xdssl_value: "50%",
|
|
|
+ xdssl_mark: 5,
|
|
|
+ xnssl_value: "50%",
|
|
|
+ xnssl_mark: 5,
|
|
|
+ fwjsl_value: "50%",
|
|
|
+ fwjsl_mark: 5,
|
|
|
+ ztzhjsl_value: "50%",
|
|
|
+ ztzhjsl_mark: 5,
|
|
|
+ gzcljsl_value: "50%",
|
|
|
+ gzcljsl_mark: 5,
|
|
|
+ mtbf_value: 5,
|
|
|
+ mtbf_mark: 5,
|
|
|
+ mttf_value: 5,
|
|
|
+ mttf_mark: 5,
|
|
|
+ mttr_value: 5,
|
|
|
+ mttr_mark: 5,
|
|
|
+ sblyxs_value: 5,
|
|
|
+ sblyxs_mark: 5,
|
|
|
+ zhcydl_value: "50%",
|
|
|
+ zhcydl_mark: 5,
|
|
|
+ sbklyl_value: "50%",
|
|
|
+ sbklyl_mark: 5,
|
|
|
+ dxkyxs_value: 5,
|
|
|
+ dxkyxs_mark: 5,
|
|
|
+ yhfxzql_value: "50%",
|
|
|
+ yhfxzql_mark: 5,
|
|
|
+ fglyczql_value: "50%",
|
|
|
+ fglyczql_mark: 5,
|
|
|
+ sblyxs_value: 5,
|
|
|
+ sblyxs_mark: 5,
|
|
|
+ zhcydl_value: "50%",
|
|
|
+ zhcydl_mark: 5,
|
|
|
+ sbklyl_value: "50%",
|
|
|
+ sbklyl_mark: 5,
|
|
|
+ dxkyxs_value: 5,
|
|
|
+ dxkyxs_mark: 5,
|
|
|
+ yhfxzql_value: "50%",
|
|
|
+ yhfxzql_mark: 5,
|
|
|
+ gglyczql_value: "50%",
|
|
|
+ gglyczql_mark: 5,
|
|
|
+ pjfs_value: 5,
|
|
|
+ pjfs_mark: 5,
|
|
|
+ jfpl_value: "50%",
|
|
|
+ jfpl_mark: 5,
|
|
|
+ yxfsl_value: "50%",
|
|
|
+ yxfsl_mark: 5,
|
|
|
+ ljfszl_value: "50%",
|
|
|
+ ljfszl_mark: 5,
|
|
|
+ remark: "110",
|
|
|
+ }),
|
|
|
+ ];
|
|
|
+ // let params = {
|
|
|
+ // pageNum: that.page.currentPage,
|
|
|
+ // pageSize: that.page.pagesize,
|
|
|
+ // years: that.pickerTime
|
|
|
+ // ? this.pickerTime.substring(0, this.pickerTime.indexOf("-")) * 1
|
|
|
+ // : null,
|
|
|
+ // month: that.pickerTime
|
|
|
+ // ? this.pickerTime.substring(
|
|
|
+ // this.pickerTime.indexOf("-") + 1,
|
|
|
+ // this.pickerTime.length
|
|
|
+ // ) * 1
|
|
|
+ // : null,
|
|
|
+ // };
|
|
|
+ // if (that.tabIndex == -1) {
|
|
|
+ // stationKPI(params).then((res) => {
|
|
|
+ // if (res) {
|
|
|
+ // that.stationControlData = res.data.records;
|
|
|
+ // that.page.total = res.data.total;
|
|
|
+ // }
|
|
|
+ // });
|
|
|
+ // } else {
|
|
|
+ // stationXklKPI(params).then((res) => {
|
|
|
+ // if (res) {
|
|
|
+ // that.stationControlData = res.data.records;
|
|
|
+ // that.page.total = res.data.total;
|
|
|
+ // }
|
|
|
+ // });
|
|
|
+ // }
|
|
|
},
|
|
|
downXlsxFn() {
|
|
|
let header = [];
|