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
274 B
12 lines
274 B
11 months ago
|
import Enum from '../../enum'
|
||
|
|
||
|
/**
|
||
|
* 枚举类:分销商审核状态
|
||
|
* ApplyStatusEnum
|
||
|
*/
|
||
|
export default new Enum([
|
||
|
{ key: 'WAIT', name: '待审核', value: 10 },
|
||
|
{ key: 'PASSED', name: '审核通过', value: 20 },
|
||
|
{ key: 'REJECT', name: '驳回', value: 30 }
|
||
|
])
|