update 烟气
This commit is contained in:
parent
60616fcb0e
commit
bc7ddff321
@ -5,6 +5,7 @@ import cls from './container.module.less';
|
|||||||
import IconStack from '../assets/Icon/icon-stack.png';
|
import IconStack from '../assets/Icon/icon-stack.png';
|
||||||
import IconGood from '../assets/Icon/icon-good.png';
|
import IconGood from '../assets/Icon/icon-good.png';
|
||||||
import IconCharger from '../assets/Icon/icon-charge.png';
|
import IconCharger from '../assets/Icon/icon-charge.png';
|
||||||
|
import IconSmoke from '../assets/Icon/icon-taiji.png';
|
||||||
|
|
||||||
const Container = (props) => {
|
const Container = (props) => {
|
||||||
let icon = useRef(null);
|
let icon = useRef(null);
|
||||||
@ -19,6 +20,9 @@ const Container = (props) => {
|
|||||||
case 'charger':
|
case 'charger':
|
||||||
icon.current = IconCharger;
|
icon.current = IconCharger;
|
||||||
break;
|
break;
|
||||||
|
case 'smoke':
|
||||||
|
icon.current = IconSmoke;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
@ -8,7 +8,7 @@ import ReactECharts from 'echarts-for-react';
|
|||||||
const SmokeTrendChart = (props) => {
|
const SmokeTrendChart = (props) => {
|
||||||
const options = {
|
const options = {
|
||||||
color: ['#FFD160', '#12FFF5', '#2760FF'],
|
color: ['#FFD160', '#12FFF5', '#2760FF'],
|
||||||
grid: { top: 28, right: 12, bottom: 32, left: 48 },
|
grid: { top: 38, right: 12, bottom: 20, left: 48 },
|
||||||
xAxis: {
|
xAxis: {
|
||||||
type: 'category',
|
type: 'category',
|
||||||
data: Array(7)
|
data: Array(7)
|
||||||
@ -34,6 +34,12 @@ const SmokeTrendChart = (props) => {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
yAxis: {
|
yAxis: {
|
||||||
|
name: '单位m³/h',
|
||||||
|
nameTextStyle: {
|
||||||
|
color: '#fff',
|
||||||
|
fontSize: 10,
|
||||||
|
align: 'right',
|
||||||
|
},
|
||||||
type: 'value',
|
type: 'value',
|
||||||
axisLabel: {
|
axisLabel: {
|
||||||
color: '#fff',
|
color: '#fff',
|
||||||
@ -72,6 +78,38 @@ const SmokeTrendChart = (props) => {
|
|||||||
},
|
},
|
||||||
// smooth: true,
|
// smooth: true,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
data: Array(7)
|
||||||
|
.fill(1)
|
||||||
|
.map((_) => {
|
||||||
|
return randomInt(60, 100);
|
||||||
|
}),
|
||||||
|
type: 'line',
|
||||||
|
areaStyle: {
|
||||||
|
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
||||||
|
{ offset: 0, color: '#12FFF540' },
|
||||||
|
{ offset: 0.5, color: '#12FFF520' },
|
||||||
|
{ offset: 1, color: '#12FFF510' },
|
||||||
|
]),
|
||||||
|
},
|
||||||
|
// smooth: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
data: Array(7)
|
||||||
|
.fill(1)
|
||||||
|
.map((_) => {
|
||||||
|
return randomInt(60, 100);
|
||||||
|
}),
|
||||||
|
type: 'line',
|
||||||
|
areaStyle: {
|
||||||
|
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
||||||
|
{ offset: 0, color: '#2760FF40' },
|
||||||
|
{ offset: 0.5, color: '#2760FF20' },
|
||||||
|
{ offset: 1, color: '#2760FF10' },
|
||||||
|
]),
|
||||||
|
},
|
||||||
|
// smooth: true,
|
||||||
|
},
|
||||||
],
|
],
|
||||||
tooltip: {
|
tooltip: {
|
||||||
trigger: 'axis',
|
trigger: 'axis',
|
||||||
@ -98,7 +136,7 @@ const SmokeTrendChart = (props) => {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className={cls.choiceBar}>
|
<div className={`${cls.choiceBar} flex items-center justify-between`}>
|
||||||
<Radio.Group
|
<Radio.Group
|
||||||
defaultValue="oxygen"
|
defaultValue="oxygen"
|
||||||
buttonStyle="solid"
|
buttonStyle="solid"
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
.energyCostChart {
|
.energyCostChart {
|
||||||
margin-top: 12px;
|
|
||||||
height: 1px;
|
height: 1px;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
padding-top: 8px;
|
padding-top: 8px;
|
||||||
background: #ae27276a;
|
|
||||||
}
|
}
|
||||||
.energyCostChart .titleBar {
|
.energyCostChart .titleBar {
|
||||||
|
width: 400px;
|
||||||
|
margin-bottom: 4px;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@ -65,6 +65,9 @@
|
|||||||
background-color: #2760ff;
|
background-color: #2760ff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.choiceBar {
|
||||||
|
}
|
||||||
|
|
||||||
.radioGroup * {
|
.radioGroup * {
|
||||||
border: none !important;
|
border: none !important;
|
||||||
border-radius: 0 !important;
|
border-radius: 0 !important;
|
||||||
|
@ -5,17 +5,19 @@ import SmokeTrendChart from './SmokeTrendChart';
|
|||||||
|
|
||||||
function SmokeHandle(props) {
|
function SmokeHandle(props) {
|
||||||
return (
|
return (
|
||||||
<Container title="能耗" icon="charger" className={cls.energyCost}>
|
<Container title="烟气处理" icon="smoke" className={cls.smokeHandle}>
|
||||||
<div className={cls.info__item_groups}>
|
<div className={`${cls.smokeHandle__content} flex flex-col`}>
|
||||||
<div className={cls.info__item}>氧 气 含 量 : 72%</div>
|
<div className={cls.info__item_groups}>
|
||||||
<div className={cls.info__item}>一氧化氮排放浓度:59mg/m³</div>
|
<div className={cls.info__item}>氧 气 含 量 : 72%</div>
|
||||||
<div className={cls.info__item}>二氧化硫排放浓度:59mg/m³</div>
|
<div className={cls.info__item}>一氧化氮排放浓度:59mg/m³</div>
|
||||||
<div className={cls.info__item}>二氧化氮排放浓度:59mg/m³</div>
|
<div className={cls.info__item}>二氧化硫排放浓度:59mg/m³</div>
|
||||||
|
<div className={cls.info__item}>二氧化氮排放浓度:59mg/m³</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<TechSplitline />
|
||||||
|
|
||||||
|
<SmokeTrendChart />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<TechSplitline />
|
|
||||||
|
|
||||||
<SmokeTrendChart />
|
|
||||||
</Container>
|
</Container>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,12 @@
|
|||||||
.energyCost {
|
.smokeHandle {
|
||||||
background: #b730305c;
|
// background: #b730305c;
|
||||||
}
|
background: url(../../../assets/smoke.png) no-repeat;
|
||||||
|
background-size: 100% 100%;
|
||||||
|
width: 626px;
|
||||||
|
|
||||||
.cost__info {
|
.smokeHandle__content {
|
||||||
margin-bottom: 12px;
|
margin-top: 8px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.info__item {
|
.info__item {
|
||||||
@ -20,6 +23,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.info__item_groups {
|
.info__item_groups {
|
||||||
|
margin-bottom: 12px;
|
||||||
margin-left: 8px;
|
margin-left: 8px;
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 1fr 1fr;
|
grid-template-columns: 1fr 1fr;
|
||||||
|
@ -5,6 +5,5 @@
|
|||||||
position: fixed;
|
position: fixed;
|
||||||
top: 100px;
|
top: 100px;
|
||||||
right: 600px;
|
right: 600px;
|
||||||
background: #77777737;
|
|
||||||
z-index: 10000;
|
z-index: 10000;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user