|
@@ -1,451 +0,0 @@
|
|
|
-let app = new Vue({
|
|
|
- el: '#app',
|
|
|
- data () {
|
|
|
- return {
|
|
|
- year: '2022',
|
|
|
- storageRecordConfig: {
|
|
|
- header: ['项目名称', '投资金额', '所属产业', '项目进度', '完成比例'],
|
|
|
- headerBGC: '#05507b33',
|
|
|
- oddRowBGC: '#69c0ff0f',
|
|
|
- evenRowBGC: '',
|
|
|
- headerHeight: '40',
|
|
|
- rowNum: 4,
|
|
|
- align: ['center'],
|
|
|
- data: [
|
|
|
- ['工程建设项目', '21.2亿', '煤炭', '终止', '2.3%'],
|
|
|
- ['工程建设项目', '21.2亿', '煤炭', '退出', '2.3%'],
|
|
|
- ['工程建设项目', '21.2亿', '煤炭', '进行中', '2.3%'],
|
|
|
- ['工程建设项目', '21.2亿', '煤炭', '进行中', '2.3%'],
|
|
|
- ['工程建设项目', '21.2亿', '煤炭', '进行中', '2.3%'],
|
|
|
- ['工程建设项目', '21.2亿', '煤炭', '进行中', '2.3%'],
|
|
|
- ],
|
|
|
- },
|
|
|
- storageRecordConfig2: {
|
|
|
- header: ['项目名称', '投资金额', '所属产业', '项目进度', '完成比例'],
|
|
|
- headerBGC: '#05507b33',
|
|
|
- oddRowBGC: '#05507b33',
|
|
|
- evenRowBGC: '',
|
|
|
- headerHeight: '40',
|
|
|
- rowNum: 4,
|
|
|
- align: ['center'],
|
|
|
- data: [
|
|
|
- ['工程建设项目', '21.2亿', '煤炭', '终止', '2.3%'],
|
|
|
- ['工程建设项目', '21.2亿', '煤炭', '退出', '2.3%'],
|
|
|
- ['工程建设项目', '21.2亿', '煤炭', '进行中', '2.3%'],
|
|
|
- ['工程建设项目', '21.2亿', '煤炭', '进行中', '2.3%'],
|
|
|
- ['工程建设项目', '21.2亿', '煤炭', '进行中', '2.3%'],
|
|
|
- ['工程建设项目', '21.2亿', '煤炭', '进行中', '2.3%'],
|
|
|
- ],
|
|
|
- },
|
|
|
- companyList: [
|
|
|
- { name: '核心人力-1' },
|
|
|
- { name: '核心人力-2' },
|
|
|
- { name: '内部人才市场' },
|
|
|
- { name: '薪酬福利' },
|
|
|
- { name: '培训' }
|
|
|
- ],
|
|
|
- }
|
|
|
- },
|
|
|
- mounted () {
|
|
|
- // 左侧图表
|
|
|
- // this.initChartL1()
|
|
|
- // this.initChartL2()
|
|
|
- // this.initChartR1()
|
|
|
- setTimeout(() => {
|
|
|
- this.aiQualityECharts();
|
|
|
- });
|
|
|
- },
|
|
|
- methods: {
|
|
|
- aiQualityECharts () {
|
|
|
- let chart = echarts.init(document.getElementById("aiQuality"));
|
|
|
- let option = {
|
|
|
- grid: {
|
|
|
- top: 35,
|
|
|
- right: 40,
|
|
|
- left: 60,
|
|
|
- bottom: 20,
|
|
|
- },
|
|
|
- tooltip: {
|
|
|
- show: true,
|
|
|
- trigger: "axis",
|
|
|
- axisPointer: {
|
|
|
- // 坐标轴指示器,坐标轴触发有效
|
|
|
- type: "shadow", // 默认为直线,可选为:'line' | 'shadow'
|
|
|
- },
|
|
|
- },
|
|
|
- xAxis: {
|
|
|
- data: ["集团本部", "山焦财务", "山焦担保", "山焦股份", "山焦国华", "山焦机电", "山焦人力", "山焦民爆", "山焦事业", "山焦投资"],
|
|
|
- axisTick: {
|
|
|
- show: false,
|
|
|
- },
|
|
|
- // x轴的字体颜色
|
|
|
- axisLabel: {
|
|
|
- textStyle: {
|
|
|
- color: "white",
|
|
|
- },
|
|
|
- },
|
|
|
- //y轴线的颜色以及宽度
|
|
|
- axisLine: {
|
|
|
- show: true,
|
|
|
- lineStyle: {
|
|
|
- color: "#1E5389",
|
|
|
- width: 1,
|
|
|
- type: "solid",
|
|
|
- },
|
|
|
- },
|
|
|
- },
|
|
|
- yAxis: {
|
|
|
- axisTick: {
|
|
|
- lineStyle: {
|
|
|
- color: "#18416F",
|
|
|
- },
|
|
|
- },
|
|
|
- // y轴的字体颜色
|
|
|
- axisLabel: {
|
|
|
- textStyle: {
|
|
|
- color: "white",
|
|
|
- },
|
|
|
- },
|
|
|
- splitLine: {
|
|
|
- show: true,
|
|
|
- lineStyle: {
|
|
|
- color: "#204561",
|
|
|
- width: 1,
|
|
|
- type: "dotted",
|
|
|
- },
|
|
|
- },
|
|
|
- //y轴线的颜色以及宽度
|
|
|
- axisLine: {
|
|
|
- show: true,
|
|
|
- lineStyle: {
|
|
|
- color: "#1E5389",
|
|
|
- width: 1,
|
|
|
- type: "solid",
|
|
|
- },
|
|
|
- },
|
|
|
- },
|
|
|
- series: [
|
|
|
- {
|
|
|
- name: "入池人数",
|
|
|
- type: "bar",
|
|
|
- data: [1200, 680, 562, 268, 717, 843, 987, 126, 723, 569],
|
|
|
- showBackground: true,
|
|
|
- backgroundStyle: {
|
|
|
- color: "#18416F",
|
|
|
- },
|
|
|
- barWidth: "10%",
|
|
|
- itemStyle: {
|
|
|
- barBorderRadius: [10, 10, 0, 0],
|
|
|
- color: new echarts.graphic.LinearGradient(0, 1, 0, 0, [
|
|
|
- {
|
|
|
- offset: 0,
|
|
|
- color: "#00F4FD",
|
|
|
- }, //柱图渐变色
|
|
|
- {
|
|
|
- offset: 1,
|
|
|
- color: "#061C4F",
|
|
|
- },
|
|
|
- ]),
|
|
|
- },
|
|
|
- },
|
|
|
- {
|
|
|
- name: "出池人数",
|
|
|
- type: "bar",
|
|
|
- data: [658, 1125, 658, 999, 643, 675, 743, 724, 733, 725],
|
|
|
- showBackground: true,
|
|
|
- backgroundStyle: {
|
|
|
- color: "#18416F",
|
|
|
- },
|
|
|
- barWidth: "10%",
|
|
|
- itemStyle: {
|
|
|
- barBorderRadius: [10, 10, 0, 0],
|
|
|
- color: new echarts.graphic.LinearGradient(0, 1, 0, 0, [
|
|
|
- {
|
|
|
- offset: 0,
|
|
|
- color: "#F55002",
|
|
|
- }, //柱图渐变色
|
|
|
- {
|
|
|
- offset: 1,
|
|
|
- color: "#0B0243",
|
|
|
- },
|
|
|
- ]),
|
|
|
- },
|
|
|
- },
|
|
|
- ],
|
|
|
- legend: {
|
|
|
- data: ["入池人数", "出池人数"],
|
|
|
- textStyle: {
|
|
|
- // 图列内容样式
|
|
|
- color: "#fff", // 字体颜色
|
|
|
- // fontSize: "10",
|
|
|
- },
|
|
|
- right: 30,
|
|
|
- icon: "roundRect",
|
|
|
- // 小图标的宽高
|
|
|
- itemHeight: 5,
|
|
|
- },
|
|
|
- };
|
|
|
- chart.setOption(option);
|
|
|
- tools.loopShowTooltip(chart, option, {
|
|
|
- nterval: 2000,
|
|
|
- loopSeries: true,
|
|
|
- });
|
|
|
- },
|
|
|
- initChartL1 () {
|
|
|
- let myChart = echarts.init(this.$refs['echartL1'])
|
|
|
- let option = {
|
|
|
- grid: {
|
|
|
- left: '10%',
|
|
|
- top: '18%',
|
|
|
- bottom: '12%',
|
|
|
- right: '8%',
|
|
|
- },
|
|
|
- tooltip: {
|
|
|
- trigger: 'axis',
|
|
|
- axisPointer: {
|
|
|
- type: 'shadow',
|
|
|
- },
|
|
|
- },
|
|
|
- xAxis: {
|
|
|
- data: ['2018年', '2019年', '2020年', '2021年', '2022年', '2023年'],
|
|
|
- axisLine: {
|
|
|
- show: true, //隐藏X轴轴线
|
|
|
- lineStyle: {
|
|
|
- color: '#3D7495',
|
|
|
- width: 1,
|
|
|
- },
|
|
|
- },
|
|
|
- axisTick: {
|
|
|
- show: false, //隐藏X轴刻度
|
|
|
- },
|
|
|
- axisLabel: {
|
|
|
- show: true,
|
|
|
- textStyle: {
|
|
|
- color: 'rgba(255,255,255,0.6)', //X轴文字颜色
|
|
|
- },
|
|
|
- },
|
|
|
- },
|
|
|
- yAxis: [
|
|
|
- {
|
|
|
- type: 'value',
|
|
|
- name: '亿元',
|
|
|
- nameTextStyle: {
|
|
|
- color: '#FFF',
|
|
|
- },
|
|
|
- splitLine: {
|
|
|
- show: true,
|
|
|
- lineStyle: {
|
|
|
- color: '#68b4dd66',
|
|
|
- type: 'dashed',
|
|
|
- },
|
|
|
- },
|
|
|
- axisLine: {
|
|
|
- show: true,
|
|
|
- lineStyle: {
|
|
|
- color: '#3D7495'
|
|
|
- }
|
|
|
- },
|
|
|
- axisLabel: {
|
|
|
- show: true,
|
|
|
- textStyle: {
|
|
|
- color: 'rgba(250,250,250,0.6)',
|
|
|
- },
|
|
|
- },
|
|
|
- }
|
|
|
- ],
|
|
|
- series: [
|
|
|
- {
|
|
|
- type: 'pictorialBar',
|
|
|
- barCategoryGap: '0%',
|
|
|
- symbol: 'path://M0,10 L10,10 C5.5,10 5.5,5 5,0 C4.5,5 4.5,10 0,10 z',
|
|
|
- label: {
|
|
|
- show: true,
|
|
|
- position: 'top',
|
|
|
- distance: 5,
|
|
|
- color: '#08DFFE',
|
|
|
- fontSize: 12,
|
|
|
- },
|
|
|
- itemStyle: {
|
|
|
- normal: {
|
|
|
- color: {
|
|
|
- type: 'linear',
|
|
|
- x: 0,
|
|
|
- y: 0,
|
|
|
- x2: 0,
|
|
|
- y2: 1,
|
|
|
- colorStops: [
|
|
|
- {
|
|
|
- offset: 0,
|
|
|
- color: '#9A11FF',
|
|
|
- },
|
|
|
- {
|
|
|
- offset: 1,
|
|
|
- color: '#08DFFE',
|
|
|
- },
|
|
|
- ],
|
|
|
- global: false, // 缺省为 false
|
|
|
- },
|
|
|
- },
|
|
|
- emphasis: {
|
|
|
- opacity: 1,
|
|
|
- },
|
|
|
- },
|
|
|
- data: [123, 60, 25, 18, 12, 9],
|
|
|
- },
|
|
|
- ],
|
|
|
- }
|
|
|
-
|
|
|
- myChart.setOption(option)
|
|
|
- },
|
|
|
- initChartL2 () {
|
|
|
- let myChart = echarts.init(this.$refs['echartL2'])
|
|
|
- let option = {
|
|
|
- tooltip: {
|
|
|
- trigger: 'axis',
|
|
|
- axisPointer: {
|
|
|
- type: 'shadow',
|
|
|
- },
|
|
|
- },
|
|
|
- grid: {
|
|
|
- top: '16%',
|
|
|
- right: '3%',
|
|
|
- left: '10%',
|
|
|
- bottom: '10%',
|
|
|
- },
|
|
|
- legend: {
|
|
|
- top: '1',
|
|
|
- right: '10',
|
|
|
- textStyle: {
|
|
|
- color: 'rgba(250,250,250,0.6)',
|
|
|
- },
|
|
|
- },
|
|
|
- xAxis: {
|
|
|
- data: ['山西焦煤', '山西文旅', '潞安化工', '晋能控股', '山西建投'],
|
|
|
- axisLine: {
|
|
|
- show: true, //隐藏X轴轴线
|
|
|
- lineStyle: {
|
|
|
- color: '#005094',
|
|
|
- width: 1,
|
|
|
- },
|
|
|
- },
|
|
|
- axisTick: {
|
|
|
- show: false, //隐藏X轴刻度
|
|
|
- },
|
|
|
- axisLabel: {
|
|
|
- show: true,
|
|
|
- textStyle: {
|
|
|
- color: 'rgba(255,255,255,0.6)', //X轴文字颜色
|
|
|
- },
|
|
|
- },
|
|
|
- },
|
|
|
- yAxis: [
|
|
|
- {
|
|
|
- type: 'value',
|
|
|
- nameTextStyle: {
|
|
|
- color: '#ebf8ac',
|
|
|
- },
|
|
|
- splitLine: {
|
|
|
- show: true,
|
|
|
- lineStyle: {
|
|
|
- color: '#68b4dd66',
|
|
|
- type: 'dashed',
|
|
|
- },
|
|
|
- },
|
|
|
- axisLine: {
|
|
|
- show: true,
|
|
|
- lineStyle: {
|
|
|
- color: '#3D7495'
|
|
|
- }
|
|
|
- },
|
|
|
- axisLabel: {
|
|
|
- show: true,
|
|
|
- textStyle: {
|
|
|
- color: 'rgba(250,250,250,0.6)',
|
|
|
- },
|
|
|
- },
|
|
|
- },
|
|
|
- ],
|
|
|
- series: [
|
|
|
- {
|
|
|
- name: '计划投资',
|
|
|
- type: 'bar',
|
|
|
- barWidth: 15,
|
|
|
- itemStyle: {
|
|
|
- normal: {
|
|
|
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
|
|
- {
|
|
|
- offset: 0,
|
|
|
- color: '#69c0ff',
|
|
|
- },
|
|
|
- {
|
|
|
- offset: 1,
|
|
|
- color: '#082550',
|
|
|
- },
|
|
|
- ]),
|
|
|
- },
|
|
|
- },
|
|
|
- data: [900, 600, 500, 450, 500],
|
|
|
- },
|
|
|
- {
|
|
|
- name: '实际投资',
|
|
|
- type: 'bar',
|
|
|
- barWidth: 15,
|
|
|
- itemStyle: {
|
|
|
- normal: {
|
|
|
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
|
|
- {
|
|
|
- offset: 0,
|
|
|
- color: '#957DFF',
|
|
|
- },
|
|
|
- {
|
|
|
- offset: 1,
|
|
|
- color: '#082550',
|
|
|
- },
|
|
|
- ]),
|
|
|
- },
|
|
|
- },
|
|
|
- data: [500, 900, 600, 800, 450],
|
|
|
- },
|
|
|
- ],
|
|
|
- }
|
|
|
- myChart.setOption(option)
|
|
|
- },
|
|
|
- initChartR1 () {
|
|
|
- let myChart = echarts.init(this.$refs['echartR1'])
|
|
|
- let option = {
|
|
|
- tooltip: {
|
|
|
- trigger: 'item'
|
|
|
- },
|
|
|
- legend: {
|
|
|
- top: 'center',
|
|
|
- orient: 'vertical',
|
|
|
- right: '2%',
|
|
|
- textStyle: {
|
|
|
- color: '#9DB9EB'
|
|
|
- }
|
|
|
- },
|
|
|
- series: [
|
|
|
- {
|
|
|
- name: '',
|
|
|
- type: 'pie',
|
|
|
- radius: ['55%', '80%'],
|
|
|
- labelLine: {
|
|
|
- normal: {
|
|
|
- lineStyle: {
|
|
|
- width: 1
|
|
|
- }
|
|
|
- }
|
|
|
- },
|
|
|
- data: [
|
|
|
- { value: 1048, name: '煤炭' },
|
|
|
- { value: 735, name: '火电' },
|
|
|
- { value: 580, name: '焦化' },
|
|
|
- { value: 484, name: '风电' },
|
|
|
- ]
|
|
|
- }
|
|
|
- ]
|
|
|
- }
|
|
|
- myChart.setOption(option)
|
|
|
- },
|
|
|
- },
|
|
|
-})
|