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.
 
 
 
 

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: '被驳回' },
];