Commit e66b5b99 authored by 王海涛's avatar 王海涛

Merge branch 'developer' of 172.16.10.76:station/station-elec-manage-view into developer

parents 8f472365 886fc20b
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import AmosEcharts from 'amos-viz/lib/echarts';
import AmosWebSocket from 'amos-websocket';
import { Connect } from 'amos-framework';
// import { getRiskRiseUprateAction } from './../../../../services/situationService';
// import SysWsURL, { completeToken } from './../../../../consts/wsUrlConsts';
const eventConnect = Connect.eventConnect;
/**
* 巡检点统计
......@@ -68,12 +61,12 @@ class RiskDegreePie extends Component {
type: 'pie',
radius: ['60%', '70%'],
avoidLabelOverlap: false,
color:['#FE0000','#5FFFFD'],
color: ['#FE0000', '#5FFFFD'],
label: {
normal: {
show: true,
color: 'white',
fontSize:25,
fontSize: 25,
position: 'center',
formatter: '{b}'
}
......@@ -83,9 +76,9 @@ class RiskDegreePie extends Component {
show: false
}
},
data:[
{value: 125, name: null},
{value: 810, name: '2%'},
data: [
{ value: 125, name: null },
{ value: 810, name: '2%' }
]
}
]
......@@ -117,12 +110,12 @@ class RiskDegreePie extends Component {
type: 'pie',
radius: ['60%', '70%'],
avoidLabelOverlap: false,
color:['#FE6600','#5FFFFD'],
color: ['#FE6600', '#5FFFFD'],
label: {
normal: {
show: true,
color: 'white',
fontSize:25,
fontSize: 25,
position: 'center',
formatter: '{b}'
}
......@@ -132,9 +125,9 @@ class RiskDegreePie extends Component {
show: false
}
},
data:[
{value: 125, name: null},
{value: 810, name: '2%'},
data: [
{ value: 125, name: null },
{ value: 810, name: '2%' }
]
}
]
......@@ -165,13 +158,13 @@ class RiskDegreePie extends Component {
name: '风险率',
type: 'pie',
radius: ['60%', '70%'],
color:['#FFD600','#5FFFFD'],
color: ['#FFD600', '#5FFFFD'],
avoidLabelOverlap: false,
label: {
normal: {
show: true,
color: 'white',
fontSize:25,
fontSize: 25,
position: 'center',
formatter: '{b}'
}
......@@ -181,9 +174,9 @@ class RiskDegreePie extends Component {
show: false
}
},
data:[
{value: 125, name: null},
{value: 810, name: '2%'},
data: [
{ value: 125, name: null },
{ value: 810, name: '2%' }
]
}
]
......@@ -192,7 +185,7 @@ class RiskDegreePie extends Component {
handleData = () => {
this.getRiskRiseUprate();
}
};
render() {
let { monthData, seasonData, yearData } = this.state;
......@@ -201,31 +194,31 @@ class RiskDegreePie extends Component {
let seasonOption = this.getSeasonOptions('season', seasonData);
let yearOption = this.getYearOptions('year', yearData);
return (
<div className="risk-degree-pie-child" style={{color:'#5FFFFD',textAlign:'center'}}>
<div className="risk-degree-pie-child" style={{ color: '#5FFFFD', textAlign: 'center' }}>
<div className="risk-degree-pie1">
<AmosEcharts option={monthOption} style={{ height: '210px', width: '210px' }}/>
<AmosEcharts option={monthOption} style={{ height: '210px', width: '210px' }} />
<div>
<div style={{fontSize:34,fontWeight:'bold',display:'inline-block'}}>{monthData.countOfType0} </div>
<div style={{fontSize:22,color:'red',fontWeight:'bold',display:'inline-block',marginLeft:10}}>{monthData.type0Rate}</div>
<div style={{ fontSize: 34, fontWeight: 'bold', display: 'inline-block' }}>{monthData.countOfType0} </div>
<div style={{ fontSize: 22, color: 'red', fontWeight: 'bold', display: 'inline-block', marginLeft: 10 }}>{monthData.type0Rate}</div>
</div>
<div style={{fontSize:22,color:'#CEC700'}}>本月风险</div>
<div style={{ fontSize: 22, color: '#CEC700' }}>本月风险</div>
</div>
<div className="risk-degree-pie2">
<AmosEcharts option={seasonOption} style={{ height: '210px', width: '210px' }}/>
<AmosEcharts option={seasonOption} style={{ height: '210px', width: '210px' }} />
<div>
<div style={{fontSize:34,fontWeight:'bold',display:'inline-block'}}>{monthData.countOfType0} </div>
<div style={{fontSize:22,fontWeight:'bold',color:'red',display:'inline-block',marginLeft:10}}>{monthData.type0Rate}</div>
<div style={{ fontSize: 34, fontWeight: 'bold', display: 'inline-block' }}>{monthData.countOfType0} </div>
<div style={{ fontSize: 22, fontWeight: 'bold', color: 'red', display: 'inline-block', marginLeft: 10 }}>{monthData.type0Rate}</div>
</div>
<div style={{fontSize:22,color:'#CEC700'}}>本季度风险</div>
<div style={{ fontSize: 22, color: '#CEC700' }}>本季度风险</div>
</div>
<div className="risk-degree-pie3">
<AmosEcharts option={yearOption} style={{ height: '210px', width: '210px' }}/>
<AmosEcharts option={yearOption} style={{ height: '210px', width: '210px' }} />
<div>
<div style={{fontSize:34,fontWeight:'bold',display:'inline-block'}}>{monthData.countOfType0} </div>
<div style={{fontSize:22,color:'red',fontWeight:'bold',display:'inline-block',marginLeft:10}}>{monthData.type0Rate}</div>
<div style={{ fontSize: 34, fontWeight: 'bold', display: 'inline-block' }}>{monthData.countOfType0} </div>
<div style={{ fontSize: 22, color: 'red', fontWeight: 'bold', display: 'inline-block', marginLeft: 10 }}>{monthData.type0Rate}</div>
</div>
<div style={{fontSize:22,color:'#CEC700'}}>本年风险</div>
<div style={{ fontSize: 22, color: '#CEC700' }}>本年风险</div>
</div>
</div>
);
......
export const SafetyRateData =[
{name:'1.伊克昭',value:100},
{name:'2.伊克昭',value:99},
{name:'3.伊克昭',value:80},
{name:'4.伊克昭',value:70},
{name:'5.伊克昭',value:60},
{name:'6.伊克昭',value:50},
{name:'7.伊克昭',value:40},
{name:'8.伊克昭',value:30},
{name:'9.伊克昭',value:20},
{name:'10.伊克昭',value:10},
]
export const riskFailureData=[
{name:'1.伊克昭',value:100},
{name:'2.伊克昭',value:99},
{name:'3.伊克昭',value:80},
{name:'4.伊克昭',value:70},
{name:'5.伊克昭',value:60},
{name:'6.伊克昭',value:50},
{name:'7.伊克昭',value:40},
{name:'8.伊克昭',value:30},
{name:'9.伊克昭',value:20},
{name:'10.伊克昭',value:10},
]
export const growthData =[
{date:'03/29',risk:'120/99', growth:'5%/2%'},
{date:'03/29',risk:'120/99', growth:'5%/2%'},
{date:'03/29',risk:'120/99', growth:'5%/2%'},
{date:'03/29',risk:'120/99', growth:'5%/2%'},
{date:'03/29',risk:'120/99', growth:'5%/2%'},
{date:'03/29',risk:'120/99', growth:'5%/2%'},
{date:'03/29',risk:'120/99', growth:'5%/2%'},
]
export const riskTrendData ={
export const SafetyRateData = [
{ name: '1.伊克昭', value: 100 },
{ name: '2.伊克昭', value: 99 },
{ name: '3.伊克昭', value: 80 },
{ name: '4.伊克昭', value: 70 },
{ name: '5.伊克昭', value: 60 },
{ name: '6.伊克昭', value: 50 },
{ name: '7.伊克昭', value: 40 },
{ name: '8.伊克昭', value: 30 },
{ name: '9.伊克昭', value: 20 },
{ name: '10.伊克昭', value: 10 }
];
export const riskFailureData = [
{ name: '1.伊克昭', value: 100 },
{ name: '2.伊克昭', value: 99 },
{ name: '3.伊克昭', value: 80 },
{ name: '4.伊克昭', value: 70 },
{ name: '5.伊克昭', value: 60 },
{ name: '6.伊克昭', value: 50 },
{ name: '7.伊克昭', value: 40 },
{ name: '8.伊克昭', value: 30 },
{ name: '9.伊克昭', value: 20 },
{ name: '10.伊克昭', value: 10 }
];
export const growthData = [
{ date: '03/29', risk: '120/99', growth: '5%/2%' },
{ date: '03/29', risk: '120/99', growth: '5%/2%' },
{ date: '03/29', risk: '120/99', growth: '5%/2%' },
{ date: '03/29', risk: '120/99', growth: '5%/2%' },
{ date: '03/29', risk: '120/99', growth: '5%/2%' },
{ date: '03/29', risk: '120/99', growth: '5%/2%' },
{ date: '03/29', risk: '120/99', growth: '5%/2%' }
];
export const riskTrendData = {
legend: {
data: ['告警', '隐患','风险'],
x:100,
y:20,
data: ['告警', '隐患', '风险'],
x: 100,
y: 20,
textStyle: {
color: '#fff',
fontSize:14,
},
fontSize: 14
}
},
dataZoom: [
{
show: true,
realtime: true,
backgroundColor:'#00B9ff',
borderColor:"#00B9ff",
left:40,
height:14,
width:996,
bottom:5
backgroundColor: '#00B9ff',
borderColor: '#00B9ff',
left: 40,
height: 14,
width: 996,
bottom: 5
},
{
type: 'inside',
realtime: true,
textStyle:false
textStyle: false
}
],
],
xAxis: {
type: 'category',
boundaryGap: false,
data: ['伊克昭', '苏州', '西安', '延安', '延安', '延安', '延安','延安','延安','延安','延安','延安','延安','延安','延安','伊克昭', '苏州', '西安'],
data: ['伊克昭', '苏州', '西安', '延安', '延安', '延安', '延安', '延安', '延安', '延安', '延安', '延安', '延安', '延安', '延安', '伊克昭', '苏州', '西安'],
axisLabel: {
show: true,
textStyle: {
color: '#fff',
fontSize : 14
fontSize: 14
}
},
axisLine:{
lineStyle:{
color:'#245665',
axisLine: {
lineStyle: {
color: '#245665'
}
},
splitLine: {
show: true,
lineStyle:{
lineStyle: {
color: ['#245665'],
width: 1,
},
width: 1
}
}
},
yAxis: {
......@@ -93,19 +88,19 @@ export const riskTrendData ={
show: true,
textStyle: {
color: '#fff',
fontSize : 14
fontSize: 14
}
},
axisLine:{
lineStyle:{
color:'#245665',
axisLine: {
lineStyle: {
color: '#245665'
}
},
splitLine: {
show: true,
lineStyle:{
lineStyle: {
color: ['#245665'],
width: 1,
width: 1
}
}
},
......@@ -114,68 +109,61 @@ export const riskTrendData ={
name: '告警',
type: 'line',
symbol: 'circle',
symbolSize:8,
data: [0, 22, 0, 55, 69, 77, 88,99,60,88,77,99,55,0,33,22, 90, 0,],
itemStyle:{
normal:{
color:'#FF0000',
symbolSize: 8,
data: [0, 22, 0, 55, 69, 77, 88, 99, 60, 88, 77, 99, 55, 0, 33, 22, 90, 0],
itemStyle: {
normal: {
color: '#FF0000',
lineStyle: {
color: '#FF0000',
width: 2
},
},
},
}
}
}
},
{
name: '隐患',
type: 'line',
symbol: 'circle',
symbolSize:8,
data: [33, 22, 55, 44, 66, 77, 77,99,40,77,77,66,88,44,55,44,33,22],
itemStyle:{
normal:{
color:'#00FFCD',
symbolSize: 8,
data: [33, 22, 55, 44, 66, 77, 77, 99, 40, 77, 77, 66, 88, 44, 55, 44, 33, 22],
itemStyle: {
normal: {
color: '#00FFCD',
lineStyle: {
color: '#00FFCD',
width: 2
},
},
},
}
}
}
},
{
name: '风险',
type: 'line',
symbol: 'circle',
symbolSize:8,
data: [0, 22, 33, 44, 44, 44, 44,55,55,90,77,66,55,44,33,22, 44, 55,],
itemStyle:{
normal:{
color:'#0A73FF',
symbolSize: 8,
data: [0, 22, 33, 44, 44, 44, 44, 55, 55, 90, 77, 66, 55, 44, 33, 22, 44, 55],
itemStyle: {
normal: {
color: '#0A73FF',
lineStyle: {
color: '#0A73FF',
width: 2
},
},
},
},
}
}
}
}
]
};
export const recentData1 = {
legend: {
data: ['送电', '收电'],
x:20,
y:20,
x: 20,
y: 20,
textStyle: {
color: '#fff',
fontSize:14,
},
fontSize: 14
}
},
xAxis: {
type: 'category',
......@@ -185,21 +173,20 @@ export const recentData1 = {
show: true,
textStyle: {
color: '#fff',
fontSize : 14
fontSize: 14
}
},
axisLine:{
lineStyle:{
color:'#245665',
axisLine: {
lineStyle: {
color: '#245665'
}
},
splitLine: {
show: true,
lineStyle:{
lineStyle: {
color: ['#245665'],
width: 1,
},
width: 1
}
}
},
yAxis: {
......@@ -208,19 +195,19 @@ export const recentData1 = {
show: true,
textStyle: {
color: '#fff',
fontSize : 14
fontSize: 14
}
},
axisLine:{
lineStyle:{
color:'#245665',
axisLine: {
lineStyle: {
color: '#245665'
}
},
splitLine: {
show: true,
lineStyle:{
lineStyle: {
color: ['#245665'],
width: 1,
width: 1
}
}
},
......@@ -229,51 +216,45 @@ export const recentData1 = {
name: '送电',
type: 'line',
symbol: 'circle',
symbolSize:8,
data: [10, 20, 80, 60, 90, 20,0],
itemStyle:{
normal:{
color:'#00FFCD',
symbolSize: 8,
data: [10, 20, 80, 60, 90, 20, 0],
itemStyle: {
normal: {
color: '#00FFCD',
lineStyle: {
color: '#00FFCD',
width: 2
},
},
},
}
}
}
},
{
name: '收电',
type: 'line',
symbol: 'circle',
symbolSize:8,
symbolSize: 8,
data: [0, 32, 1, 34, 90, 30, 10],
itemStyle:{
normal:{
color:'#0A73FF',
itemStyle: {
normal: {
color: '#0A73FF',
lineStyle: {
color: '#0A73FF',
width: 2
},
},
},
},
}
}
}
}
]
};
export const recentData2 = {
legend: {
data: ['送电', '收电'],
x:20,
y:20,
x: 20,
y: 20,
textStyle: {
color: '#fff',
fontSize:14,
},
fontSize: 14
}
},
xAxis: {
type: 'category',
......@@ -283,21 +264,20 @@ export const recentData2 = {
show: true,
textStyle: {
color: '#fff',
fontSize : 14
fontSize: 14
}
},
axisLine:{
lineStyle:{
color:'#245665',
axisLine: {
lineStyle: {
color: '#245665'
}
},
splitLine: {
show: true,
lineStyle:{
lineStyle: {
color: ['#245665'],
width: 1,
},
width: 1
}
}
},
yAxis: {
......@@ -306,19 +286,19 @@ export const recentData2 = {
show: true,
textStyle: {
color: '#fff',
fontSize : 14
fontSize: 14
}
},
axisLine:{
lineStyle:{
color:'#245665',
axisLine: {
lineStyle: {
color: '#245665'
}
},
splitLine: {
show: true,
lineStyle:{
lineStyle: {
color: ['#245665'],
width: 1,
width: 1
}
}
},
......@@ -327,44 +307,39 @@ export const recentData2 = {
name: '送电',
type: 'line',
symbol: 'circle',
symbolSize:8,
data: [0, 20, 60, 60, 70, 20,0],
itemStyle:{
normal:{
color:'#00FFCD',
symbolSize: 8,
data: [0, 20, 60, 60, 70, 20, 0],
itemStyle: {
normal: {
color: '#00FFCD',
lineStyle: {
color: '#00FFCD',
width: 2
},
},
},
}
}
}
},
{
name: '收电',
type: 'line',
symbol: 'circle',
symbolSize:8,
symbolSize: 8,
data: [0, 40, 1, 70, 0, 30, 10],
itemStyle:{
normal:{
color:'#0A73FF',
itemStyle: {
normal: {
color: '#0A73FF',
lineStyle: {
color: '#0A73FF',
width: 2
},
},
},
},
}
}
}
}
]
};
export const chainMapData= {
export const chainMapData = {
geo: {
map: 'china'
}
}
};
......@@ -36,7 +36,7 @@ const provienceData = [
{ name: '新疆', area: '其他', type: 'areaCenterCity', InValue: '0' }
];
const geoCoordMap = {
const geoCoordMap = {
黑龙江: [126.6433411, 45.74149323],
吉林: [125.3154297, 43.89256287],
辽宁: [123.4116821, 41.7966156],
......@@ -268,6 +268,7 @@ const provienceData = [
菏泽: [115.480656, 35.23375],
合肥: [117.27, 31.86],
武汉: [114.31, 30.52],
大庆: [125.03, 46.58] };
大庆: [125.03, 46.58]
};
export { provienceData, geoCoordMap }
export { provienceData, geoCoordMap };
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment