|
@@ -3,9 +3,9 @@ module.exports.getColor = function (status) {
|
|
|
if (status == '未开始') {
|
|
if (status == '未开始') {
|
|
|
color = 'var(--warning)';
|
|
color = 'var(--warning)';
|
|
|
} else if (status == '进行中') {
|
|
} else if (status == '进行中') {
|
|
|
- color = '#5AB73F';
|
|
|
|
|
|
|
+ color = '#67C23A';
|
|
|
} else if (status == '已截止') {
|
|
} else if (status == '已截止') {
|
|
|
- color = '#BBBBBB';
|
|
|
|
|
|
|
+ color = '#999999';
|
|
|
};
|
|
};
|
|
|
return color
|
|
return color
|
|
|
}
|
|
}
|