You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
797 B
20 lines
797 B
import themeColor from 'theme.less'; |
|
export const auditStatus = [ |
|
{ val: 1, text: '待审核' }, |
|
{ val: 2, text: '提交上级审核' }, |
|
{ val: 3, text: '被驳回', color: themeColor.redStatus }, |
|
{ val: 4, text: '审核通过' }, |
|
]; |
|
export const riskGradeStatus = [ |
|
{ val: 0, text: '未评估', color: 'black' }, |
|
{ val: 1, text: '蓝 色', color: themeColor.blueStatus }, |
|
{ val: 2, text: '黄色', color: themeColor.yellowStatus }, |
|
{ val: 3, text: '橙色', color: themeColor.orangeStatus }, |
|
{ val: 4, text: '红色', color: themeColor.redStatus }, |
|
]; |
|
export const auditStatusList = [ |
|
{ val: 1, text: '待审核' }, |
|
{ val: 2, text: '审核中' }, |
|
{ val: 3, text: '审核通过' }, |
|
{ val: 4, text: '被驳回', color: themeColor.redStatus }, |
|
];
|
|
|