|
|
|
@ -1,30 +1,18 @@
|
|
|
|
|
<template> |
|
|
|
|
<!-- <div>成本分析</div>--> |
|
|
|
|
<div style="width: 100%;height: 100%;padding-top: 2%;border-radius:15px;background-color: #9c9a9a;"> |
|
|
|
|
<div style="height: 30%;margin-left: 1%;width: 100%"> |
|
|
|
|
<div style="color: #ffffff;font-size: 19px;margin-bottom: 5px">分析成本</div> |
|
|
|
|
<!-- <div style="display: flex;align-items: center;justify-content: space-between;margin-left: 5%;width: 90%">--> |
|
|
|
|
<!-- <div style="display: flex;align-items: center;justify-content: flex-start;width: 42%" >--> |
|
|
|
|
<!-- <div class="xian">新疆分公司</div>--> |
|
|
|
|
<!-- <div class="xian">计划经营科</div>--> |
|
|
|
|
<!-- <div class="xian">第一项目部</div>--> |
|
|
|
|
<!-- <div class="xian">第二项目部</div>--> |
|
|
|
|
<!-- </div>--> |
|
|
|
|
<!-- <div style="float: right;;display: flex;align-items: center;justify-content: flex-end;width: 42%">--> |
|
|
|
|
<!-- <div class="xian">年度</div>--> |
|
|
|
|
<!-- <div class="xian">半年度</div>--> |
|
|
|
|
<!-- <div class="xian">季度</div>--> |
|
|
|
|
<!-- <div class="xian">月</div>--> |
|
|
|
|
<!-- </div>--> |
|
|
|
|
<div style="width: 100%;height: 100%;padding-top: 1%;border-radius:15px;"> |
|
|
|
|
<!-- <div style="height: 9%;margin-left: 2%;width: 100%">--> |
|
|
|
|
<div style="font-size: 25px;padding-left: 2%">分析成本 |
|
|
|
|
<div style="float: right;width: 38%;height: 35px;padding-top: 0px"> |
|
|
|
|
<span style="margin-right: 8%;padding-top: 0px"> <a-month-picker :disabled-date="disabledDate" placeholder="选择日期" /> </span> |
|
|
|
|
<j-dict-select-tag type="list" v-model="materialType" style="width: 45%;;padding-right: 4%" |
|
|
|
|
:trigger-change="true" dictCode="material_type" |
|
|
|
|
placeholder="请选择物资类型" @change="handleChange"/> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<!-- </div>--> |
|
|
|
|
<!-- <div style="display: flex;align-items: center;justify-content: flex-start;margin-left: 5%">--> |
|
|
|
|
<!-- <div class="zi">扇形图</div>--> |
|
|
|
|
<!-- <div class="zi">折线图</div>--> |
|
|
|
|
<!-- <div class="zi">条形图</div>--> |
|
|
|
|
<!-- </div>--> |
|
|
|
|
</div> |
|
|
|
|
<div id="myCostAnalysis" style="width: 100%; height: 70%;padding-top: 10px"></div> |
|
|
|
|
</div> |
|
|
|
|
<!-- </div>--> |
|
|
|
|
<div id="myCostAnalysis" style="width: 100%; height: 95%;"></div> |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
@ -36,21 +24,455 @@ export default {
|
|
|
|
|
name: "CostAnalysis", |
|
|
|
|
data(){ |
|
|
|
|
return{ |
|
|
|
|
|
|
|
|
|
materialType:null, |
|
|
|
|
options: { }, |
|
|
|
|
list:[], |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
mounted() { |
|
|
|
|
this.echartsInit() |
|
|
|
|
// this.echartsInitTiao() |
|
|
|
|
// this.echartsInitZhe() |
|
|
|
|
// this.echartsInit() |
|
|
|
|
this.getList(); |
|
|
|
|
}, |
|
|
|
|
methods:{ |
|
|
|
|
echartsInit() { |
|
|
|
|
disabledDate(current) { |
|
|
|
|
// Can not select days before today and today |
|
|
|
|
return current && current < moment().endOf('day'); |
|
|
|
|
}, |
|
|
|
|
handleChange(value) { |
|
|
|
|
console.log(`selected ${value}`); |
|
|
|
|
}, |
|
|
|
|
getList(){ |
|
|
|
|
this.list = [ |
|
|
|
|
{ value: 1048, name: '生产类物资' }, |
|
|
|
|
{ value: 735, name: '非生产类物资' }, |
|
|
|
|
{ value: 580, name: '科研类物资' }, |
|
|
|
|
{ value: 484, name: '无形类资产' }, |
|
|
|
|
{ value: 300, name: '人员工资' }, |
|
|
|
|
{ value: 300, name: '税务' }, |
|
|
|
|
]; |
|
|
|
|
this.$nextTick(function () { |
|
|
|
|
this.barData() |
|
|
|
|
this.initChart(); |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
//渲染图表 |
|
|
|
|
initChart() { |
|
|
|
|
let charter = echarts.init(document.getElementById("myCostAnalysis")) |
|
|
|
|
charter.resize() |
|
|
|
|
charter.clear() |
|
|
|
|
charter.setOption(this.options, true) |
|
|
|
|
}, |
|
|
|
|
//折线 |
|
|
|
|
lineData() { |
|
|
|
|
let that = this |
|
|
|
|
let xAxisData = that.list.map((item) => item.name) |
|
|
|
|
let seriesData = that.list.map((item) => item.value) |
|
|
|
|
this.options = { |
|
|
|
|
title: { |
|
|
|
|
// ...dOptions.title, |
|
|
|
|
// text: this.title |
|
|
|
|
}, |
|
|
|
|
tooltip: { |
|
|
|
|
trigger: 'axis', |
|
|
|
|
axisPointer: { |
|
|
|
|
type: 'shadow' |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
toolbox: { |
|
|
|
|
show: true, |
|
|
|
|
feature: { |
|
|
|
|
// dataView: { readOnly: false }, |
|
|
|
|
myPie: { |
|
|
|
|
show: true, |
|
|
|
|
title: '切换为饼状图', |
|
|
|
|
icon: 'path://M512 98.304C282.624 98.304 98.304 282.624 98.304 512s184.32 413.696 413.696 413.696c229.376 0 413.696-184.32 413.696-413.696S741.376 98.304 512 98.304zM888.832 491.52l-331.776 0 233.472-233.472C847.872 323.584 884.736 401.408 888.832 491.52zM512 888.832c-208.896 0-376.832-167.936-376.832-376.832 0-208.896 167.936-376.832 376.832-376.832 98.304 0 184.32 36.864 253.952 98.304l-266.24 266.24c-4.096 4.096-4.096 8.192-4.096 12.288 0 12.288 8.192 20.48 20.48 20.48l376.832 0C876.544 729.088 712.704 888.832 512 888.832z', |
|
|
|
|
onclick: function () { |
|
|
|
|
that.pieData() |
|
|
|
|
that.initChart() |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
magicType: { show: true, type: ['bar', 'line'] }, |
|
|
|
|
// restore: {}, |
|
|
|
|
// saveAsImage: {} |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
xAxis: { |
|
|
|
|
type: 'category', |
|
|
|
|
data: xAxisData, |
|
|
|
|
axisLine: { |
|
|
|
|
show: false, |
|
|
|
|
lineStyle: { |
|
|
|
|
color: '#878686', //x轴的颜色 |
|
|
|
|
// width: 8, //轴线的宽度 |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
yAxis: { |
|
|
|
|
type: 'value', |
|
|
|
|
axisLine: { |
|
|
|
|
show: false, |
|
|
|
|
lineStyle: { |
|
|
|
|
color: '#8d8b8b', //x轴的颜色 |
|
|
|
|
// width: 8, //轴线的宽度 |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
splitLine: { |
|
|
|
|
show: true, |
|
|
|
|
lineStyle: { |
|
|
|
|
type: 'dashed', |
|
|
|
|
color:'#c2cfd9' |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
series: [ |
|
|
|
|
{ |
|
|
|
|
data: seriesData, |
|
|
|
|
type: 'line', |
|
|
|
|
smooth: true, |
|
|
|
|
showBackground: true, |
|
|
|
|
backgroundStyle: { |
|
|
|
|
color: 'rgba(111, 162, 135, 0.2)' |
|
|
|
|
}, |
|
|
|
|
itemStyle: { |
|
|
|
|
normal: { |
|
|
|
|
//这里是颜色 |
|
|
|
|
color: '#00A3E0' |
|
|
|
|
// function(params) { |
|
|
|
|
// //注意,如果颜色太少的话,后面颜色不会自动循环,最好多定义几个颜色 |
|
|
|
|
// var colorList = ['#00A3E0','#FFA100', '#ffc0cb', '#CCCCCC', '#BBFFAA','#749f83', '#ca8622']; |
|
|
|
|
// return colorList[params.dataIndex] |
|
|
|
|
// } |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
] |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
echartsInitZhe() { |
|
|
|
|
let myEcharts = echarts.init(document.getElementById("myCostAnalysis")) |
|
|
|
|
let option = { |
|
|
|
|
toolbox: { |
|
|
|
|
show: true, |
|
|
|
|
feature: { |
|
|
|
|
myTool: { |
|
|
|
|
show: true, |
|
|
|
|
title: '切换为饼状图', |
|
|
|
|
icon: 'path://M512 98.304C282.624 98.304 98.304 282.624 98.304 512s184.32 413.696 413.696 413.696c229.376 0 413.696-184.32 413.696-413.696S741.376 98.304 512 98.304zM888.832 491.52l-331.776 0 233.472-233.472C847.872 323.584 884.736 401.408 888.832 491.52zM512 888.832c-208.896 0-376.832-167.936-376.832-376.832 0-208.896 167.936-376.832 376.832-376.832 98.304 0 184.32 36.864 253.952 98.304l-266.24 266.24c-4.096 4.096-4.096 8.192-4.096 12.288 0 12.288 8.192 20.48 20.48 20.48l376.832 0C876.544 729.088 712.704 888.832 512 888.832z', |
|
|
|
|
onclick: function () { |
|
|
|
|
let myChartline = document.getElementById("myCostAnalysis"); |
|
|
|
|
let myChartpie2 = document.getElementById("myCostAnalysisYuan"); |
|
|
|
|
myChartline.style.display = "none"; |
|
|
|
|
myChartpie2.style.display = "block"; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
magicType: { type: ['bar', 'line'] }, |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
xAxis: { |
|
|
|
|
type: 'category', |
|
|
|
|
data: ['生产类物资', '非生产类物资', '科研类物资', '无形类资产', '人员工资', '税务'] |
|
|
|
|
}, |
|
|
|
|
yAxis: { |
|
|
|
|
type: 'value' |
|
|
|
|
}, |
|
|
|
|
series: [ |
|
|
|
|
{ |
|
|
|
|
data: [120, 200, 150, 80, 70, 110], |
|
|
|
|
type: 'bar' |
|
|
|
|
} |
|
|
|
|
] |
|
|
|
|
}; |
|
|
|
|
myEcharts.setOption(option)// 给生成的echarts实例进行传递配置项option |
|
|
|
|
}, |
|
|
|
|
//柱型 |
|
|
|
|
barData() { |
|
|
|
|
let that = this |
|
|
|
|
let xAxisData = that.list.map((item) => item.name) |
|
|
|
|
let seriesData = that.list.map((item) => item.value) |
|
|
|
|
this.options = { |
|
|
|
|
title: { |
|
|
|
|
// ...dOptions.title, |
|
|
|
|
// text: this.title |
|
|
|
|
}, |
|
|
|
|
tooltip: { |
|
|
|
|
trigger: 'axis', |
|
|
|
|
axisPointer: { |
|
|
|
|
type: 'shadow' |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
toolbox: { |
|
|
|
|
show: true, |
|
|
|
|
feature: { |
|
|
|
|
// dataView: { readOnly: false }, |
|
|
|
|
myPie: { |
|
|
|
|
show: true, |
|
|
|
|
title: '切换为饼状图', |
|
|
|
|
icon: 'path://M512 98.304C282.624 98.304 98.304 282.624 98.304 512s184.32 413.696 413.696 413.696c229.376 0 413.696-184.32 413.696-413.696S741.376 98.304 512 98.304zM888.832 491.52l-331.776 0 233.472-233.472C847.872 323.584 884.736 401.408 888.832 491.52zM512 888.832c-208.896 0-376.832-167.936-376.832-376.832 0-208.896 167.936-376.832 376.832-376.832 98.304 0 184.32 36.864 253.952 98.304l-266.24 266.24c-4.096 4.096-4.096 8.192-4.096 12.288 0 12.288 8.192 20.48 20.48 20.48l376.832 0C876.544 729.088 712.704 888.832 512 888.832z', |
|
|
|
|
onclick: function () { |
|
|
|
|
that.pieData() |
|
|
|
|
that.initChart() |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
magicType: { show: true, type: ['bar', 'line'] }, |
|
|
|
|
// restore: {}, |
|
|
|
|
// saveAsImage: {} |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
xAxis: { |
|
|
|
|
type: 'category', |
|
|
|
|
data: xAxisData, |
|
|
|
|
axisLine: { |
|
|
|
|
show: false, |
|
|
|
|
lineStyle: { |
|
|
|
|
color: '#878686', //x轴的颜色 |
|
|
|
|
// width: 8, //轴线的宽度 |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
yAxis: { |
|
|
|
|
type: 'value', |
|
|
|
|
axisLine: { |
|
|
|
|
show: false, |
|
|
|
|
lineStyle: { |
|
|
|
|
color: '#8d8b8b', //x轴的颜色 |
|
|
|
|
// width: 8, //轴线的宽度 |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
splitLine: { |
|
|
|
|
show: true, |
|
|
|
|
lineStyle: { |
|
|
|
|
type: 'dashed', |
|
|
|
|
color:'#c2cfd9' |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
series: [ |
|
|
|
|
{ |
|
|
|
|
data: seriesData, |
|
|
|
|
type: 'bar', |
|
|
|
|
showBackground: true, |
|
|
|
|
backgroundStyle: { |
|
|
|
|
color: 'rgba(180, 180, 180, 0.2)' |
|
|
|
|
}, |
|
|
|
|
// showBackground: true, |
|
|
|
|
// backgroundStyle: { |
|
|
|
|
// color: 'rgba(111, 162, 135, 0.2)' |
|
|
|
|
// }, |
|
|
|
|
itemStyle: { |
|
|
|
|
normal: { |
|
|
|
|
//这里是颜色 |
|
|
|
|
color: '#00A3E0' |
|
|
|
|
// function(params) { |
|
|
|
|
// //注意,如果颜色太少的话,后面颜色不会自动循环,最好多定义几个颜色 |
|
|
|
|
// // var colorList = ['#0b58f5','#FFA100', '#ffc0cb', '#CCCCCC', '#BBFFAA','#749f83', '#ca8622']; |
|
|
|
|
// var colorList = ['#0b58f5']; |
|
|
|
|
// return colorList[params.dataIndex] |
|
|
|
|
// } |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
] |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
echartsInitTiao() { |
|
|
|
|
let myEcharts = echarts.init(document.getElementById("myCostAnalysis")) |
|
|
|
|
let option = { |
|
|
|
|
// title: { |
|
|
|
|
// text: '分析成本', |
|
|
|
|
// // subtext: '', |
|
|
|
|
// // left: 'center' |
|
|
|
|
// }, |
|
|
|
|
toolbox: { |
|
|
|
|
show: true, |
|
|
|
|
feature: { |
|
|
|
|
myTool: { |
|
|
|
|
show: true, |
|
|
|
|
title: '切换为饼状图', |
|
|
|
|
icon: 'path://M512 98.304C282.624 98.304 98.304 282.624 98.304 512s184.32 413.696 413.696 413.696c229.376 0 413.696-184.32 413.696-413.696S741.376 98.304 512 98.304zM888.832 491.52l-331.776 0 233.472-233.472C847.872 323.584 884.736 401.408 888.832 491.52zM512 888.832c-208.896 0-376.832-167.936-376.832-376.832 0-208.896 167.936-376.832 376.832-376.832 98.304 0 184.32 36.864 253.952 98.304l-266.24 266.24c-4.096 4.096-4.096 8.192-4.096 12.288 0 12.288 8.192 20.48 20.48 20.48l376.832 0C876.544 729.088 712.704 888.832 512 888.832z', |
|
|
|
|
onclick: function () { |
|
|
|
|
let myChartline = document.getElementById("myCostAnalysis"); |
|
|
|
|
let myChartpie2 = document.getElementById("myCostAnalysisYuan"); |
|
|
|
|
myChartline.style.display = "none"; |
|
|
|
|
myChartpie2.style.display = "block"; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
magicType: { type: ['bar', 'line'] }, |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
xAxis: { |
|
|
|
|
type: 'category', |
|
|
|
|
data: ['生产类物资', '非生产类物资', '科研类物资', '无形类资产', '人员工资', '税务'] |
|
|
|
|
}, |
|
|
|
|
yAxis: { |
|
|
|
|
type: 'value' |
|
|
|
|
}, |
|
|
|
|
series: [ |
|
|
|
|
{ |
|
|
|
|
data: [120, 200, 150, 80, 70, 110], |
|
|
|
|
type: 'bar' |
|
|
|
|
} |
|
|
|
|
] |
|
|
|
|
}; |
|
|
|
|
myEcharts.setOption(option)// 给生成的echarts实例进行传递配置项option |
|
|
|
|
}, |
|
|
|
|
//饼 |
|
|
|
|
pieData() { |
|
|
|
|
let that = this |
|
|
|
|
this.options = { |
|
|
|
|
title: { |
|
|
|
|
// ...dOptions.title, |
|
|
|
|
// text: this.title |
|
|
|
|
}, |
|
|
|
|
toolbox: { |
|
|
|
|
show: true, |
|
|
|
|
feature: { |
|
|
|
|
// dataView: { readOnly: false }, |
|
|
|
|
myPie: { |
|
|
|
|
show: true, |
|
|
|
|
title: '切换为饼状图', |
|
|
|
|
icon: 'path://M512 98.304C282.624 98.304 98.304 282.624 98.304 512s184.32 413.696 413.696 413.696c229.376 0 413.696-184.32 413.696-413.696S741.376 98.304 512 98.304zM888.832 491.52l-331.776 0 233.472-233.472C847.872 323.584 884.736 401.408 888.832 491.52zM512 888.832c-208.896 0-376.832-167.936-376.832-376.832 0-208.896 167.936-376.832 376.832-376.832 98.304 0 184.32 36.864 253.952 98.304l-266.24 266.24c-4.096 4.096-4.096 8.192-4.096 12.288 0 12.288 8.192 20.48 20.48 20.48l376.832 0C876.544 729.088 712.704 888.832 512 888.832z', |
|
|
|
|
onclick: function () { |
|
|
|
|
that.pieData() |
|
|
|
|
that.initChart() |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
myBar: { |
|
|
|
|
show: true, |
|
|
|
|
title: '切换为柱状图', |
|
|
|
|
icon: 'path://M6.7,22.9h10V48h-10V22.9zM24.9,13h10v35h-10V13zM43.2,2h10v46h-10V2zM3.1,58h53.7', |
|
|
|
|
onclick: function () { |
|
|
|
|
that.barData() |
|
|
|
|
that.initChart() |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
myLine: { |
|
|
|
|
show: true, |
|
|
|
|
title: '切换为折线图', |
|
|
|
|
icon: 'path://M4.1,28.9h7.1l9.3-22l7.4,38l9.7-19.7l3,12.8h14.9M4.1,58h51.4', |
|
|
|
|
onclick: function () { |
|
|
|
|
that.lineData() |
|
|
|
|
that.initChart() |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
// restore: {}, |
|
|
|
|
// saveAsImage: {} |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
color: ['#00A3E0','#FFA100', '#ffc0cb', '#CCCCCC', '#BBFFAA','#749f83', '#ca8622'], |
|
|
|
|
tooltip: { |
|
|
|
|
trigger: 'item', |
|
|
|
|
formatter: '{b} : {c} ({d}%)' |
|
|
|
|
}, |
|
|
|
|
legend: { |
|
|
|
|
icon: 'circle', |
|
|
|
|
right: 6, |
|
|
|
|
top: '10%', |
|
|
|
|
width: '40%', |
|
|
|
|
itemWidth: 18, |
|
|
|
|
itemHeight: 18, |
|
|
|
|
textStyle: { |
|
|
|
|
padding: 4, |
|
|
|
|
rich: { |
|
|
|
|
a: { |
|
|
|
|
color: '#969AA8', |
|
|
|
|
lineHeight: 30, |
|
|
|
|
fontSize: 14, |
|
|
|
|
width: 90 |
|
|
|
|
}, |
|
|
|
|
b: { |
|
|
|
|
fontSize: 14, |
|
|
|
|
fontWeight: 'bolder', |
|
|
|
|
color: '#000' |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
data: that.list, |
|
|
|
|
formatter: function (name) { |
|
|
|
|
var total = 0 |
|
|
|
|
var target |
|
|
|
|
for (var i = 0, l = that.list.length; i < l; i++) { |
|
|
|
|
total += that.list[i].value |
|
|
|
|
if (that.list[i].name == name) { |
|
|
|
|
target = that.list[i].value |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
let nameResult = name.length > 6 ? name.slice(0, 6) + '...' : name |
|
|
|
|
return '{b|' + ((target / total) * 100).toFixed(2) + '%}\n{a|' + nameResult + '}' |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
series: [ |
|
|
|
|
{ |
|
|
|
|
type: 'pie', |
|
|
|
|
label: { |
|
|
|
|
show: false |
|
|
|
|
}, |
|
|
|
|
radius: [75, 105], |
|
|
|
|
center: ['35%', '55%'], |
|
|
|
|
data: that.list, |
|
|
|
|
animationEasing: 'cubicInOut', |
|
|
|
|
animationDuration: 2600 |
|
|
|
|
} |
|
|
|
|
] |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
echartsInit() { |
|
|
|
|
let myChartline = document.getElementById("myCostAnalysisYuan"); |
|
|
|
|
let myEcharts = echarts.init(document.getElementById("myCostAnalysisYuan")) |
|
|
|
|
let option = { |
|
|
|
|
// title: { |
|
|
|
|
// text: '分析成本', |
|
|
|
|
// // subtext: '', |
|
|
|
|
// // left: 'center' |
|
|
|
|
// }, |
|
|
|
|
toolbox: { |
|
|
|
|
show: true, |
|
|
|
|
feature: { |
|
|
|
|
|
|
|
|
|
myTool: { |
|
|
|
|
show: true, |
|
|
|
|
title: '切换为饼状图', |
|
|
|
|
icon: 'path://M512 98.304C282.624 98.304 98.304 282.624 98.304 512s184.32 413.696 413.696 413.696c229.376 0 413.696-184.32 413.696-413.696S741.376 98.304 512 98.304zM888.832 491.52l-331.776 0 233.472-233.472C847.872 323.584 884.736 401.408 888.832 491.52zM512 888.832c-208.896 0-376.832-167.936-376.832-376.832 0-208.896 167.936-376.832 376.832-376.832 98.304 0 184.32 36.864 253.952 98.304l-266.24 266.24c-4.096 4.096-4.096 8.192-4.096 12.288 0 12.288 8.192 20.48 20.48 20.48l376.832 0C876.544 729.088 712.704 888.832 512 888.832z', |
|
|
|
|
onclick: function () { |
|
|
|
|
let myChartline = document.getElementById("myCostAnalysis"); |
|
|
|
|
let myChartpie2 = document.getElementById("myCostAnalysisYuan"); |
|
|
|
|
myChartline.style.display = "none"; |
|
|
|
|
myChartpie2.style.display = "block"; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
myTool1: { |
|
|
|
|
show: true, |
|
|
|
|
title: '切换为柱状图', |
|
|
|
|
icon: 'path://M163.84 880.64h122.88v-737.28h-122.88v737.28z m-40.96-778.24h204.8v819.2h-204.8v-819.2z m286.72 204.8h204.8v614.4h-204.8v-614.4z m40.96 573.44h122.88v-532.48h-122.88v532.48z m245.76-368.64h204.8v409.6h-204.8v-409.6z m40.96 368.64h122.88v-327.68h-122.88v327.68z', |
|
|
|
|
onclick: function () { |
|
|
|
|
let myChartline = document.getElementById("myCostAnalysis"); |
|
|
|
|
let myChartpie2 = document.getElementById("myCostAnalysisYuan"); |
|
|
|
|
myChartline.style.display = "block"; |
|
|
|
|
myChartpie2.style.display = "none"; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
myLine: { |
|
|
|
|
show: true, |
|
|
|
|
title: '切换为折线图', |
|
|
|
|
icon: 'path://M4.1,28.9h7.1l9.3-22l7.4,38l9.7-19.7l3,12.8h14.9M4.1,58h51.4', |
|
|
|
|
onclick: function () { |
|
|
|
|
let myChartline = document.getElementById("myCostAnalysis"); |
|
|
|
|
let myChartpie2 = document.getElementById("myCostAnalysisYuan"); |
|
|
|
|
myChartline.style.display = "block"; |
|
|
|
|
myChartpie2.style.display = "none"; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
// magicType: { type: ['line',] }, |
|
|
|
|
// restore: {}, |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
tooltip: { |
|
|
|
|
trigger: 'item' |
|
|
|
|
}, |
|
|
|
@ -148,6 +570,7 @@ name: "CostAnalysis",
|
|
|
|
|
// ] |
|
|
|
|
// }; |
|
|
|
|
myEcharts.setOption(option)// 给生成的echarts实例进行传递配置项option |
|
|
|
|
myChartline.style.display = "none"; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|