123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868 |
- import * as echarts from "echarts";
- import excelHelper from "@utils/excelHelper";
- export default {
- data() {
- return {
- pickerOptions: {
- disabledDate(time) {
- return time.getTime() > Date.now();
- },
- },
- len:10,
- fc:"",
- pj:"",
- xl:"",
- autoHeight_fc: 400,
- autoHeight_pj: 800,
- autoHeight_xl: 1200,
- tableHeight_fc:460,
- tableHeight_pj:860,
- tableHeight_xl:1220,
- queryAll_table_lyl:[],
- wpIdslist: {
- name:"",
- id:"",
- },
- projectlist:{
- name:"",
- id:"",
- },
- linelist:{
- name:"",
- id:"",
- },
- fc_date: [],
- pj_date: [],
- xl_date: [],
- beginDate: "",
- endDate: "",
- activeName: "first",
- tableid: "fc",
- styleObject_fc: {
- height: '460px'
- },
- styleObject_pj: {
- height: '860px'
- },
- styleObject_xl: {
- height: '1220px'
- },
- linechar_data:{
- dayspeed:[],
- daydl2:[],
- daynhgzssdl:[],
- daynhcfdl:[],
- daynhqfdl:[],
- daynhxdssdl:[],
- lyl:[],
- wtName:[],
- total:[],
- daynhwhssdl:[]
- }
- };
- },
- methods: {
- created(){
-
- },
- onSubmit() {},
- /**
- * 获取风场
- */
- query_wpid() {
- 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.wpIdslist = res.data;
- }).catch(error =>{
- this.$message.error('获取数据失败');
- });
- },
- /**
- * 获取项目
- */
- query_xml(){
- this.pj = "";
- this.xl = "";
- this.API.get("powercompare/projectAjax?wpIds=" + this.fc).then((res) => {
- this.projectlist = res.data;
-
- }).catch(error =>{
- this.$message.error('获取数据失败');
- });
- },
- /**
- * 获取线路
- */
- query_xl(){
- this.xl = "";
- this.API.get("powercompare/lineAjax?pjIds=" + this.pj).then((res) => {
- this.linelist = res.data;
- }).catch(error =>{
- this.$message.error('获取数据失败');
- });
- },
- /**
- * 获取当前卡片状态
- */
- handleClick(tab) {
- Object.assign(this.$data.autoHeight_fc, this.$options.data().autoHeight_fc);
- Object.assign(this.$data.styleObject_fc, this.$options.data().styleObject_fc);
- Object.assign(this.$data.autoHeight_pj, this.$options.data().autoHeight_pj);
- Object.assign(this.$data.styleObject_pj, this.$options.data().styleObject_pj);
- Object.assign(this.$data.autoHeight_xl, this.$options.data().autoHeight_xl);
- Object.assign(this.$data.styleObject_xl, this.$options.data().styleObject_xl);
- Object.assign(this.$data.queryAll_table_lyl, this.$options.data().queryAll_table_lyl);
- if (tab.name === "first") {
- this.tableid = "fc";
- this.query();
- } else if (tab.name === "second") {
- this.tableid = "pj";
- this.query();
- } else if (tab.name === "jdxl") {
- this.tableid = "xl";
- this.query();
- }
- },
- deleteRow(index, rows) {
- rows.splice(index, 1);
- },
- /**
- * 查询风场、项目、线路列表数据结果
- */
- query() {
- Object.assign(this.$data.autoHeight_fc, this.$options.data().autoHeight_fc);
- Object.assign(this.$data.styleObject_fc, this.$options.data().styleObject_fc);
- Object.assign(this.$data.autoHeight_pj, this.$options.data().autoHeight_pj);
- Object.assign(this.$data.styleObject_pj, this.$options.data().styleObject_pj);
- Object.assign(this.$data.autoHeight_xl, this.$options.data().autoHeight_xl);
- Object.assign(this.$data.styleObject_xl, this.$options.data().styleObject_xl);
- Object.assign(this.$data.queryAll_table_lyl, this.$options.data().queryAll_table_lyl);
- this.styleObject_fc.height = '460px';
- this.autoHeight_fc = '400px';
- this.styleObject_pj.height = '860px';
- this.autoHeight_pj = '800px';
- this.styleObject_xl.height = '1260px';
- this.autoHeight_xl = '1200px';
- this.fc_date = [];
- this.xl_date = [];
- this.pj_date = [];
- //表格数据获取
- this.API
- .get(
- "powercompare/powerAjaxAll?wpIds=" +
- this.fc +
- "&beginDate=" +
- this.beginDate +
- "&endDate=" +
- this.endDate +
- "&queryType=" +
- this.tableid +
- "&sortName=" +
- this.fc +
- "&sortOrder=" +
- "Asc"
- )
- .then((res) => {
- let that = this;
- Object.assign(this.$data.linechar_data, this.$options.data().linechar_data);
- this.linechar_data.dayspeed=[];
- this.linechar_data.daydl2=[];
- this.linechar_data.daynhgzssdl=[];
- this.linechar_data.daynhcfdl=[];
- this.linechar_data.daynhqfdl=[];
- this.linechar_data.daynhxdssdl=[];
- this.linechar_data.lyl=[];
- this.linechar_data.wtName=[];
- this.linechar_data.daynhwhssdl=[];
- let queryAll_table = res.data.list;
- let queryAll_table_lyl = res.data.lyl;
- for(let i = 0;i < Object.keys(queryAll_table).length;i++){
- if(queryAll_table[i].wtName!="合计"){
- that.linechar_data.dayspeed.push(queryAll_table[i].dayspeed.toFixed(2));
- that.linechar_data.daydl2.push(queryAll_table[i].daydl2.toFixed(2));
- that.linechar_data.daynhgzssdl.push(queryAll_table[i].daynhgzssdl.toFixed(2));
- that.linechar_data.daynhcfdl.push(queryAll_table[i].daynhcfdl.toFixed(2));
- that.linechar_data.daynhqfdl.push(queryAll_table[i].daynhqfdl.toFixed(2));
- that.linechar_data.daynhxdssdl.push(queryAll_table[i].daynhxdssdl.toFixed(2));
- that.linechar_data.lyl.push(queryAll_table[i].lyl.toFixed(2));
- that.linechar_data.wtName.push(queryAll_table[i].wtName);
- that.linechar_data.total.push(queryAll_table[i].total.toFixed(2));
- that.linechar_data.daynhwhssdl.push(queryAll_table[i].daynhwhssdl.toFixed(2));
- }
- }
- if (this.tableid === "fc") {
- that.fc_date = queryAll_table;
- that.drawhistogram_fc(this.linechar_data,queryAll_table_lyl);
- } else if (this.tableid === "pj") {
- that.pj_date = queryAll_table;
- that.drawhistogram_pj(this.linechar_data,queryAll_table_lyl);
- } else if (this.tableid === "xl") {
- that.xl_date = queryAll_table;
- that.drawhistogram_xl(this.linechar_data,queryAll_table_lyl);
- }
- }).catch(error =>{
- this.$message.error('获取数据失败');
- });
- },
- /**
- *
- * 询风场、项目、线路列表数据结果
- */
- queryPowerAll() {
- Object.assign(this.$data.autoHeight_fc, this.$options.data().autoHeight_fc);
- Object.assign(this.$data.styleObject_fc, this.$options.data().styleObject_fc);
- Object.assign(this.$data.linechar_data, this.$options.data().linechar_data);
- let that = this;
- if (
- this.beginDate == "" ||
- this.endDate == "" ||
- this.beginDate == undefined ||
- this.endDate == undefined
- ) {
- this.query_wpid();
- that.$message.error("请选时间!");
- return;
- }
- this.fc_date = [];
- this.xl_date = [];
- this.pj_date = [];
- if (
- that.fc == "" ||
- that.fc == null ||
- that.fc == undefined
- ) {
- that.query();
- } else {
- this.API
- .get(
- "powercompare/powerAjax?wpIds=" +
- this.fc +
- "&pjIds=" +
- this.pj +
- "&lineIds=" +
- this.xl +
- "&beginDate=" +
- this.beginDate +
- "&endDate=" +
- this.endDate +
- "&sortName=" +
- this.fc +
- "&sortOrder=" +
- "Asc"
- )
- .then((res) => {
- let that = this;
- this.len = Object.keys(res.data.list).length;
- if(this.len <= 10){that.autoHeight_fc = 575; that.styleObject_fc.height = '700px' }
- else if(this.len > 10 && this.len <=20){that.autoHeight_fc = 775; that.styleObject_fc.height = '800px';that.autoHeight_pj = 775; that.styleObject_pj.height = '800px';that.autoHeight_xl = 775; that.styleObject_xl.height = '800px' }
- else if(this.len > 20 && this.len <=30){that.autoHeight_fc = 975; that.styleObject_fc.height = '1000px';that.autoHeight_pj = 975; that.styleObject_pj.height = '1000px';that.autoHeight_xl = 975; that.styleObject_xl.height = '1000px' }
- else if(this.len > 30 && this.len <=40){that.autoHeight_fc = 1175; that.styleObject_fc.height = '1200px';that.autoHeight_pj = 1175; that.styleObject_pj.height = '1200px';that.autoHeight_xl = 1175; that.styleObject_xl.height = '1200px' }
- else if(this.len > 40 && this.len <=50){that.autoHeight_fc = 1375; that.styleObject_fc.height = '1400px';that.autoHeight_pj = 1375; that.styleObject_pj.height = '1400px';that.autoHeight_xl = 1375; that.styleObject_xl.height = '1400px' }
- else if(this.len > 50 && this.len <=60){that.autoHeight_fc = 1575; that.styleObject_fc.height = '1600px';that.autoHeight_pj = 1575; that.styleObject_pj.height = '1600px';that.autoHeight_xl = 1575; that.styleObject_xl.height = '1600px' }
- else if(this.len > 60 && this.len <=70){that.autoHeight_fc = 1775; that.styleObject_fc.height = '1800px';that.autoHeight_pj = 1775; that.styleObject_pj.height = '1800px';that.autoHeight_xl = 1775; that.styleObject_xl.height = '1800px' }
- else if(this.len > 70 && this.len <=80){that.autoHeight_fc = 1975; that.styleObject_fc.height = '2000px';that.autoHeight_pj = 1975; that.styleObject_pj.height = '2000px';that.autoHeight_xl = 1975; that.styleObject_xl.height = '2000px' }
- else{that.autoHeight_fc = 2175; that.styleObject_fc.height = '2200px';that.autoHeight_pj = 2175; that.styleObject_pj.height = '2200px';that.autoHeight_xl = 2175; that.styleObject_xl.height = '2200px' }
- this.tableHeight_fc = this.autoHeight_fc - 20;
- this.tableHeight_pj = this.autoHeight_pj - 20;
- this.tableHeight_xl = this.autoHeight_xl - 20;
- Object.assign(this.$data.linechar_data, this.$options.data().linechar_data);
- this.linechar_data.dayspeed=[];
- this.linechar_data.daydl2=[];
- this.linechar_data.daynhgzssdl=[];
- this.linechar_data.daynhcfdl=[];
- this.linechar_data.daynhqfdl=[];
- this.linechar_data.daynhxdssdl=[];
- this.linechar_data.lyl=[];
- this.linechar_data.wtName=[];
- this.linechar_data.daynhwhssdl=[];
- let queryAll_table = res.data.list;
- let queryAll_table_lyl = res.data.lyl;
- //this.query_lyl(queryAll_table);
- for(let i = 0;i < Object.keys(queryAll_table).length;i++){
- if(queryAll_table[i].wtName!="合计"){
- that.linechar_data.dayspeed.push(queryAll_table[i].dayspeed.toFixed(2));
- that.linechar_data.daydl2.push(queryAll_table[i].daydl2.toFixed(2));
- that.linechar_data.daynhgzssdl.push(queryAll_table[i].daynhgzssdl.toFixed(2));
- that.linechar_data.daynhcfdl.push(queryAll_table[i].daynhcfdl.toFixed(2));
- that.linechar_data.daynhqfdl.push(queryAll_table[i].daynhqfdl.toFixed(2));
- that.linechar_data.daynhxdssdl.push(queryAll_table[i].daynhxdssdl.toFixed(2));
- that.linechar_data.lyl.push(queryAll_table[i].lyl.toFixed(2));
- that.linechar_data.wtName.push(queryAll_table[i].wtName);
- that.linechar_data.total.push(queryAll_table[i].total.toFixed(2));
- that.linechar_data.daynhwhssdl.push(queryAll_table[i].daynhwhssdl.toFixed(2));
- }
-
- }
- if (this.tableid === "fc") {
- that.fc_date = queryAll_table;
- that.drawhistogram_fc(this.linechar_data,queryAll_table_lyl);
- } else if (this.tableid === "pj") {
- that.pj_date = queryAll_table;
- that.drawhistogram_pj(this.linechar_data,queryAll_table_lyl);
- } else if (this.tableid === "xl") {
- that.xl_date = queryAll_table;
- that.drawhistogram_xl(this.linechar_data,queryAll_table_lyl);
- }
- }).catch(error =>{
- this.$message.error('获取数据失败');
- });
- }
- },
- /**
- *
- * 查询检查
- */
- checkwindfarm() {
- if (this.fc == "") {
- this.$message.error("请选择风场!");
- return;
- }
- },
- checkproject() {
- if (this.fc == "") {
- this.$message.error("请选择项目!");
- return;
- }
- if (new Date(this.timedate) == null) {
- this.$message.error("请选择时间");
- return;
- }
- },
- checktime() {
- if (new Date(this.timedate) == null) {
- this.$message.error("请选择时间");
- return;
- }
- },
- /**
- * 详情跳转
- */
- queryApDataMx() {
- this.$router.push({ path: "/newPerformanceList" ,
- query: {
- beginDate : this.beginDate,
- endDate : this.endDate
- },});
- },
- /**
- * 格式转换
- */
- filter_total(cellValue) {
- return parseFloat(cellValue.total).toFixed(2);
- },
- filter_daydl2(cellValue) {
- return parseFloat(cellValue.daydl2).toFixed(2);
- },
- filter_dayspeed(cellValue) {
- return parseFloat(cellValue.dayspeed).toFixed(2);
- },
- filter_daynhwhssdl(cellValue) {
- return parseFloat(cellValue.daynhwhssdl).toFixed(2);
- },
- filter_daynhcfdl(cellValue) {
- return parseFloat(cellValue.daynhcfdl).toFixed(2);
- },
- filter_daynhxdssdl(cellValue) {
- return parseFloat(cellValue.daynhqfdl).toFixed(2);
- },
- filter_lyl(cellValue) {
- return parseFloat(cellValue.lyl).toFixed(2);
- },
- filter_daynhgzssdl(cellValue) {
- return parseFloat(cellValue.daynhgzssdl).toFixed(2);
- },
- toExcel() {
- let that = this;
- if (this.tableid === "fc") {
- excelHelper.exportExcel("fc_table", "fc数据", ".xls", true);
- } else if (this.tableid === "pj") {
- excelHelper.exportExcel("pj_table", "pj数据", ".xls", true);
- } else if (this.tableid === "xl") {
- excelHelper.exportExcel("xl_table", "xl数据", ".xls", true);
- }
- },
- drawhistogram_fc(date,date2) {
- this.chartLine = echarts.init(document.getElementById("histogram_fc"));
- this.chartLine.clear();
- this.chartLine.resize({ height: this.autoHeight_fc });
- var option;
- option = {
- color: [
- "#64E572",
- "#24CBE5",
- "#DDDF00",
- "#ED561B",
- "#50B432",
- "#058DC7",
- ],
- title: {
- text: "风机绩效榜单",
- left: 300,
- top: -5,
- textStyle: {
- fontSize: 13,
- },
- },
- tooltip: {
- trigger: "axis",
- axisPointer: {
- // Use axis to trigger tooltip
- type: "shadow", // 'shadow' as default; can also be 'line' or 'shadow'
- },
- },
- legend: {
- left: 15,
- top: 30,
- data: [
- "实发电量",
- "计划检修损失",
- "非计划检修损失",
- "限电损失",
- "受累损失",
- "性能损失",
- "-",
- ],
- },
- grid: {
- left: "3%",
- right: "4%",
- bottom: "3%",
- containLabel: true,
- },
- xAxis: {
- type: "value",
- max: Math.ceil(Math.max.apply(null, date.total))+ Math.ceil((Math.max.apply(null, date.total))*0.08)
- },
- yAxis: {
- type: "category",
- data: date.wtName,
- },
- series: [
- {
- name: "实发电量",
- type: "bar",
- stack: "total",
- label: {
- show: true,
- },
- emphasis: {
- focus: "series",
- },
- data: date.daydl2,
- },
- {
- name: "计划检修损失",
- type: "bar",
- stack: "total",
- label: {
- show: true,
- },
- emphasis: {
- focus: "series",
- },
- data: date.daynhwhssdl,
- },
- {
- name: "非计划检修损失",
- type: "bar",
- stack: "total",
- label: {
- show: true,
- },
- emphasis: {
- focus: "series",
- },
- data: date.daynhgzssdl,
- },
- {
- name: "限电损失",
- type: "bar",
- stack: "total",
- label: {
- show: true,
- },
- emphasis: {
- focus: "series",
- },
- data: date.daynhxdssdl,
- },
- {
- name: "受累损失",
- type: "bar",
- stack: "total",
- label: {
- show: true,
- },
- emphasis: {
- focus: "series",
- },
- data: date.daynhcfdl,
- },
- {
- name: "性能损失",
- type: "bar",
- stack: "total",
- label: {
- show: true,
- },
- emphasis: {
- focus: "series",
- },
- data: date.daynhqfdl,
- },
- //曲线
- {
- name: "-",
- data: date.total,
- markPoint: {
- data: date2,
- },
- type: "line",
- symbol: "circle",
- symbolSize: 20,
- lineStyle: {
- color: "#5470C6",
- width: 4,
- type: "dashed",
- },
- itemStyle: {
- borderWidth: 3,
- borderColor: "#EE6666",
- color: "yellow",
- },
- },
- ],
- };
- this.chartLine.setOption(option);
- },
- drawhistogram_pj(date,date2) {
- this.chartLine = echarts.init(document.getElementById("histogram_xm"));
- this.chartLine.clear();
- this.chartLine.resize({ height: this.autoHeight_pj });
- var option;
- var option;
- option = {
- color: [
- "#64E572",
- "#24CBE5",
- "#DDDF00",
- "#ED561B",
- "#50B432",
- "#058DC7",
- ],
- title: {
- text: "项目绩效榜单",
- left: 300,
- top: -5,
- textStyle: {
- fontSize: 13,
- },
- },
- tooltip: {
- trigger: "axis",
- axisPointer: {
- // Use axis to trigger tooltip
- type: "shadow", // 'shadow' as default; can also be 'line' or 'shadow'
- },
- },
- legend: {
- left: 15,
- top: 30,
- data: [
- "实发电量",
- "计划检修损失",
- "非计划检修损失",
- "限电损失",
- "受累损失",
- "性能损失",
- "-",
- ],
- },
- grid: {
- left: "3%",
- right: "4%",
- bottom: "3%",
- containLabel: true,
- },
- xAxis: {
- type: "value",
- max: Math.ceil(Math.max.apply(null, date.total))+ Math.ceil((Math.max.apply(null, date.total))*0.08)
- },
- yAxis: {
- type: "category",
- data: date.wtName,
- },
- series: [
- {
- name: "实发电量",
- type: "bar",
- stack: "total",
- label: {
- show: true,
- },
- emphasis: {
- focus: "series",
- },
- data: date.daydl2,
- },
- {
- name: "计划检修损失",
- type: "bar",
- stack: "total",
- label: {
- show: true,
- },
- emphasis: {
- focus: "series",
- },
- data: date.daynhwhssdl,
- },
- {
- name: "非计划检修损失",
- type: "bar",
- stack: "total",
- label: {
- show: true,
- },
- emphasis: {
- focus: "series",
- },
- data: date.daynhgzssdl,
- },
- {
- name: "限电损失",
- type: "bar",
- stack: "total",
- label: {
- show: true,
- },
- emphasis: {
- focus: "series",
- },
- data: date.daynhxdssdl,
- },
- {
- name: "受累损失",
- type: "bar",
- stack: "total",
- label: {
- show: true,
- },
- emphasis: {
- focus: "series",
- },
- data: date.daynhcfdl,
- },
- {
- name: "性能损失",
- type: "bar",
- stack: "total",
- label: {
- show: true,
- },
- emphasis: {
- focus: "series",
- },
- data: date.daynhqfdl,
- },
- //曲线
- {
- name: "-",
- data: date.total,
- markPoint: {
- data: date2,
- },
- type: "line",
- symbol: "circle",
- symbolSize: 20,
- lineStyle: {
- color: "#5470C6",
- width: 4,
- type: "dashed",
- },
- itemStyle: {
- borderWidth: 3,
- borderColor: "#EE6666",
- color: "yellow",
- },
- },
- ],
- };
- this.chartLine.setOption(option);
- },
- drawhistogram_xl(date,date2) {
- this.chartLine = echarts.init(document.getElementById("histogram_jdxl"));
- this.chartLine.clear();
- this.chartLine.resize({ height: this.autoHeight_xl });
- var option;
- var option;
- option = {
- color: [
- "#64E572",
- "#24CBE5",
- "#DDDF00",
- "#ED561B",
- "#50B432",
- "#058DC7",
- ],
- title: {
- text: "路线绩效榜单",
- left: 300,
- top: -5,
- textStyle: {
- fontSize: 13,
- },
- },
- tooltip: {
- trigger: "axis",
- axisPointer: {
- // Use axis to trigger tooltip
- type: "shadow", // 'shadow' as default; can also be 'line' or 'shadow'
- },
- },
- legend: {
- left: 15,
- top: 30,
- data: [
- "实发电量",
- "计划检修损失",
- "非计划检修损失",
- "限电损失",
- "受累损失",
- "性能损失",
- "-",
- ],
- },
- grid: {
- left: "3%",
- right: "4%",
- bottom: "3%",
- containLabel: true,
- },
- xAxis: {
- type: "value",
- max: Math.ceil(Math.max.apply(null, date.total))+ Math.ceil((Math.max.apply(null, date.total))*0.08)
- },
- yAxis: {
- type: "category",
- data: date.wtName,
- },
- series: [
- {
- name: "实发电量",
- type: "bar",
- stack: "total",
- label: {
- show: true,
- },
- emphasis: {
- focus: "series",
- },
- data: date.daydl2,
- },
- {
- name: "计划检修损失",
- type: "bar",
- stack: "total",
- label: {
- show: true,
- },
- emphasis: {
- focus: "series",
- },
- data: date.daynhwhssdl,
- },
- {
- name: "非计划检修损失",
- type: "bar",
- stack: "total",
- label: {
- show: true,
- },
- emphasis: {
- focus: "series",
- },
- data: date.daynhgzssdl,
- },
- {
- name: "限电损失",
- type: "bar",
- stack: "total",
- label: {
- show: true,
- },
- emphasis: {
- focus: "series",
- },
- data: date.daynhxdssdl,
- },
- {
- name: "受累损失",
- type: "bar",
- stack: "total",
- label: {
- show: true,
- },
- emphasis: {
- focus: "series",
- },
- data: date.daynhcfdl,
- },
- {
- name: "性能损失",
- type: "bar",
- stack: "total",
- label: {
- show: true,
- },
- emphasis: {
- focus: "series",
- },
- data: date.daynhqfdl,
- },
- //曲线
- {
- name: "-",
- data: date.total,
- markPoint: {
- data: date2,
- },
- type: "line",
- symbol: "circle",
- symbolSize: 20,
- lineStyle: {
- color: "#5470C6",
- width: 4,
- type: "dashed",
- },
- itemStyle: {
- borderWidth: 3,
- borderColor: "#EE6666",
- color: "yellow",
- },
- },
- ],
- };
- this.chartLine.setOption(option);
- },
- },
- mounted() {
- this.$nextTick(() => {
-
- //后面的50:根据需求空出的高度,自行调整
- });
-
- this.query_wpid();
- this.query();
- },
- };
|