|
@@ -36,7 +36,11 @@
|
|
>
|
|
>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
- <div class="parcel-content" v-loading="loading" element-loading-background="rgba(4, 12, 11, 0.8)">
|
|
|
|
|
|
+ <div
|
|
|
|
+ class="parcel-content"
|
|
|
|
+ v-loading="loading"
|
|
|
|
+ element-loading-background="rgba(4, 12, 11, 0.8)"
|
|
|
|
+ >
|
|
<div class="line clearfix">
|
|
<div class="line clearfix">
|
|
<div class="leftContent">
|
|
<div class="leftContent">
|
|
<span>{{ selectValue }}</span>
|
|
<span>{{ selectValue }}</span>
|
|
@@ -74,17 +78,9 @@
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
-// import Panel from "@/components/curveAnalyse/panel.vue";
|
|
|
|
-// import ChartColumnar from '@/components/curveAnalyse/multiple-bar-chart.vue'
|
|
|
|
import BarCharts from "./components/barCharts.vue";
|
|
import BarCharts from "./components/barCharts.vue";
|
|
-// import { companys, fnlylList, gzsslList, whsslList, xdsslList, xnsslList, slsslList } from '@/api/curveAnalyse'
|
|
|
|
import {
|
|
import {
|
|
companys,
|
|
companys,
|
|
- gzsslList,
|
|
|
|
- whsslList,
|
|
|
|
- xdsslList,
|
|
|
|
- xnsslList,
|
|
|
|
- slsslList,
|
|
|
|
} from "@/api/curveAnalyse";
|
|
} from "@/api/curveAnalyse";
|
|
import { GetStationByCompany } from "@/api/factoryMonitor/index.js";
|
|
import { GetStationByCompany } from "@/api/factoryMonitor/index.js";
|
|
import { getMonthElectricAnalyse } from "@/api/monthlyPerformanceAnalysis.js";
|
|
import { getMonthElectricAnalyse } from "@/api/monthlyPerformanceAnalysis.js";
|
|
@@ -143,7 +139,6 @@ export default {
|
|
if (res.data) {
|
|
if (res.data) {
|
|
this.companyOptions = res.data;
|
|
this.companyOptions = res.data;
|
|
this.company = res.data[0].id;
|
|
this.company = res.data[0].id;
|
|
- // this.search();
|
|
|
|
this.getStation();
|
|
this.getStation();
|
|
}
|
|
}
|
|
});
|
|
});
|
|
@@ -170,9 +165,9 @@ export default {
|
|
//合计列
|
|
//合计列
|
|
let hj = [
|
|
let hj = [
|
|
data.bnjhdlhj,
|
|
data.bnjhdlhj,
|
|
- data.bnsjdlhj + "%",
|
|
|
|
|
|
+ data.bnsjdlhj,
|
|
null,
|
|
null,
|
|
- data.bnsjdlhj + "%",
|
|
|
|
|
|
+ data.qnzbhj + "%",
|
|
null,
|
|
null,
|
|
null,
|
|
null,
|
|
];
|
|
];
|
|
@@ -227,8 +222,6 @@ export default {
|
|
});
|
|
});
|
|
},
|
|
},
|
|
},
|
|
},
|
|
- mounted() {},
|
|
|
|
- beforeUnmount() {},
|
|
|
|
};
|
|
};
|
|
</script>
|
|
</script>
|
|
|
|
|