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

65 lines
906 B

4 months ago
/*
* 服务列表状态
4 months ago
*/
export const REVIEW_ENUM = {
NOSUBMIT: {
value: 0,
desc: '未提交',
},
APPROVAL: {
value: 1,
3 months ago
desc: '待审核',
4 months ago
},
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: '第四季度',
},
};
/*
* 服务审核状态
*/
export const SERVICEC_REVIEW_ENUM = {
APPROVAL: {
value: 1,
desc: '待审核',
},
PASS: {
value: 3,
desc: '已通过',
},
REFUSE: {
value: 4,
desc: '拒绝',
},
};
4 months ago
export default {
REVIEW_ENUM,
3 months ago
QUARTER_ENUM,
SERVICEC_REVIEW_ENUM,
4 months ago
}