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.
30 lines
360 B
30 lines
360 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: '拒绝',
|
||
|
|
},
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
export default {
|
||
|
|
REVIEW_ENUM,
|
||
|
|
}
|