🐛 修复认证量图表颜色展示问题

pull/81/MERGE
awenes 2024-07-30 18:49:38 +08:00
parent 9bd70d13db
commit c83db58b59
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ export default () => {
seriesField: 'status', seriesField: 'status',
marginRatio: 0.1, marginRatio: 0.1,
color: ({ status }) => { color: ({ status }) => {
if (status === '成功') { if (status === 'success') {
return '#5B8FF9'; return '#5B8FF9';
} }
return '#F4664A'; return '#F4664A';