12 lines
584 B
12 lines
584 B
import themeColor from 'theme.less'; |
|
export const dangerStatus = [ |
|
{ value: 1, color: themeColor.greenStatus, text: '一般隐患' }, |
|
{ value: 2, color: '#D9930D', text: '较大隐患' }, |
|
{ value: 3, color: themeColor.redStatus, text: '重大隐患' }, |
|
]; |
|
export const checkStatus = [ |
|
{ value: 1, color: themeColor.orangeStatus, text: '待审核' }, |
|
{ value: 2, color: themeColor.orangeStatus, text: '提交上级审核' }, |
|
{ value: 3, color: themeColor.greenStatus, text: '审核通过' }, |
|
{ value: 4, color: themeColor.redStatus, text: '被驳回' }, |
|
];
|
|
|