律师系统前端
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.

49 lines
697 B

4 months ago
/*
* 审核状态
*/
export const REVIEW_ENUM = {
NOSUBMIT: {
value: 0,
desc: '未提交',
},
APPROVAL: {
value: 1,
desc: '待审批',
},
REVIEW: {
value: 2,
desc: '审批中',
},
PASS: {
value: 3,
desc: '已通过',
},
REFUSE: {
value: 4,
desc: '拒绝',
},
3 months ago
};
// 季度枚举
export const QUARTER_ENUM = {
Q1: {
value: 'Q1',
desc: '第一季度',
},
Q2: {
value: 'Q2',
desc: '第二季度',
},
Q3: {
value: 'Q3',
desc: '第三季度',
},
Q4: {
value: 'Q4',
desc: '第四季度',
},
};
4 months ago
export default {
REVIEW_ENUM,
3 months ago
QUARTER_ENUM,
4 months ago
}