修改终端台账录入

This commit is contained in:
GGJ
2025-04-09 13:56:41 +08:00
parent ff18cfc3a3
commit cec4bb9904
5 changed files with 107 additions and 96 deletions

View File

@@ -45,13 +45,15 @@ const info = () => {
},
xAxis: {
type: 'value',
data: [1, 2, 3, 4],
data: [1,2,3,4],
axisLabel: {
show: true,
textStyle: {
color: '#FFF'
},
formatter: function (value) {}
// formatter: function (value) {
// }
},
splitLine: {
show: false
@@ -79,47 +81,47 @@ const info = () => {
}
},
markLine: {
silent: false,
symbol: 'circle',
data: [
{
name: '',
yAxis: 100,
lineStyle: {
color: '#009900'
},
label: {
show: true,
formatter: '优质',
color: '#009900'
}
silent: false,
symbol: 'circle',
data: [
{
name: '',
yAxis: 100,
lineStyle: {
color:'#009900'
},
{
name: '',
yAxis: 90,
lineStyle: {
color: '#77DA63'
},
label: {
show: true,
color: '#77DA63',
formatter: '良好'
}
},
{
name: '',
yAxis: 60,
lineStyle: {
color: '#FFCC00'
},
label: {
show: true,
color: '#FFCC00',
formatter: '合格'
}
label: {
show: true,
formatter: '优质',
color:'#009900'
}
]
},
},
{
name: '',
yAxis: 90,
lineStyle: {
color:'#77DA63'
},
label: {
show: true,
color:'#77DA63',
formatter: '良好'
}
},
{
name: '',
yAxis: 60,
lineStyle: {
color:'#FFCC00'
},
label: {
show: true,
color:'#FFCC00',
formatter: '合格'
}
}
]
},
data: dataSource.map(item => item.value)
}
]