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.
45 lines
643 B
45 lines
643 B
/*
|
|
* 审核状态
|
|
*/
|
|
export const REVIEW_ENUM = {
|
|
NOSUBMIT: {
|
|
value: 0,
|
|
desc: '未提交',
|
|
},
|
|
APPROVAL: {
|
|
value: 1,
|
|
desc: '待审核',
|
|
},
|
|
PASS: {
|
|
value: 3,
|
|
desc: '已通过',
|
|
},
|
|
REFUSE: {
|
|
value: 4,
|
|
desc: '拒绝',
|
|
},
|
|
|
|
};
|
|
// 季度枚举
|
|
export const QUARTER_ENUM = {
|
|
Q1: {
|
|
value: 'Q1',
|
|
desc: '第一季度',
|
|
},
|
|
Q2: {
|
|
value: 'Q2',
|
|
desc: '第二季度',
|
|
},
|
|
Q3: {
|
|
value: 'Q3',
|
|
desc: '第三季度',
|
|
},
|
|
Q4: {
|
|
value: 'Q4',
|
|
desc: '第四季度',
|
|
},
|
|
};
|
|
export default {
|
|
REVIEW_ENUM,
|
|
QUARTER_ENUM,
|
|
}
|