|
@@ -195,8 +195,8 @@ export default defineComponent({
|
|
|
icoimg: 'dashboard-icon3.svg',
|
|
|
title1: '本月',
|
|
|
title2: '今日',
|
|
|
- title1_bgcolor: '#5ECCFF',
|
|
|
- title2_bgcolor: '#2441F9',
|
|
|
+ title1_bgcolor: '#4285F4',
|
|
|
+ title2_bgcolor: '#FFBB73',
|
|
|
},
|
|
|
{
|
|
|
allnum: 0,
|
|
@@ -211,7 +211,7 @@ export default defineComponent({
|
|
|
title1: '本月',
|
|
|
title2: '今日',
|
|
|
title1_bgcolor: '#5ECCFF',
|
|
|
- title2_bgcolor: '#2441F9',
|
|
|
+ title2_bgcolor: '#FFBB73',
|
|
|
},
|
|
|
],
|
|
|
myCharts: [],
|
|
@@ -248,7 +248,7 @@ export default defineComponent({
|
|
|
{
|
|
|
type: 'value',
|
|
|
name: '条数',
|
|
|
- splitLine: { show: true, lineStyle: { type: 'dashed', color: '#f5f5f5' } },
|
|
|
+ splitLine: { show: true, lineStyle: { type: 'dashed', color: 'rgba(0, 0, 0, 0.03)' } },
|
|
|
axisLabel: {
|
|
|
margin: 2,
|
|
|
formatter: function (value: any) {
|
|
@@ -270,12 +270,12 @@ export default defineComponent({
|
|
|
symbol: 'circle',
|
|
|
smooth: true,
|
|
|
data: state.lineChartMsgTotalData,
|
|
|
- lineStyle: { color: '#6AE4F8', width: 3 },
|
|
|
- itemStyle: { color: '#6AE4F8', borderColor: '#6AE4F8' },
|
|
|
+ lineStyle: { color: '#FBBB04', width: 3 },
|
|
|
+ itemStyle: { color: '#FBBB04', borderColor: '#FBBB04' },
|
|
|
areaStyle: {
|
|
|
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
|
|
- { offset: 0, color: 'rgba(106, 228, 248, 0.3)' },
|
|
|
- { offset: 1, color: 'rgba(106, 228, 248, 0)' },
|
|
|
+ { offset: 0, color: 'rgba(251, 187, 4, 0.3)' },
|
|
|
+ { offset: 1, color: 'rgba(251, 187, 4, 0)' },
|
|
|
]),
|
|
|
},
|
|
|
},
|
|
@@ -286,12 +286,12 @@ export default defineComponent({
|
|
|
symbol: 'circle',
|
|
|
smooth: true,
|
|
|
data: state.lineChartAlarmTotalData,
|
|
|
- lineStyle: { color: '#3880F0', width: 3 },
|
|
|
- itemStyle: { color: '#3880F0', borderColor: '#3880F0' },
|
|
|
+ lineStyle: { color: '#4285F4', width: 3 },
|
|
|
+ itemStyle: { color: '#4285F4', borderColor: '#4285F4' },
|
|
|
areaStyle: {
|
|
|
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
|
|
- { offset: 0, color: 'rgba(56, 128, 240, 0.3)' },
|
|
|
- { offset: 1, color: 'rgba(56, 128, 240, 0)' },
|
|
|
+ { offset: 0, color: 'rgba(66, 133, 244, 0.3)' },
|
|
|
+ { offset: 1, color: 'rgba(66, 133, 244, 0)' },
|
|
|
]),
|
|
|
},
|
|
|
emphasis: {
|
|
@@ -332,7 +332,7 @@ export default defineComponent({
|
|
|
data.push({ name: getname[i], value: getvalue[i] });
|
|
|
}
|
|
|
|
|
|
- const colorList = ['#FF0000', '#FEC279', '#968AF5', '#51A3FC', '#669',];
|
|
|
+ const colorList = ['#FF0000', '#4285F4', '#FBBB04', '#34A853', '#669'];
|
|
|
const color = state.pieChartLevel.map(level => colorList[level - 1])
|
|
|
|
|
|
const option = {
|
|
@@ -659,7 +659,7 @@ $homeNavLengh: 8;
|
|
|
height: 54px;
|
|
|
|
|
|
.font30 {
|
|
|
- color: #343EED;
|
|
|
+ color: #4285F4;
|
|
|
font-weight: bold;
|
|
|
font-size: 30px;
|
|
|
}
|