第一次提交
This commit is contained in:
11
common/enum/dealer/apply/ApplyStatus.js
Executable file
11
common/enum/dealer/apply/ApplyStatus.js
Executable file
@@ -0,0 +1,11 @@
|
||||
import Enum from '../../enum'
|
||||
|
||||
/**
|
||||
* 枚举类:分销商审核状态
|
||||
* ApplyStatusEnum
|
||||
*/
|
||||
export default new Enum([
|
||||
{ key: 'WAIT', name: '待审核', value: 10 },
|
||||
{ key: 'PASSED', name: '审核通过', value: 20 },
|
||||
{ key: 'REJECT', name: '驳回', value: 30 }
|
||||
])
|
||||
10
common/enum/dealer/apply/ApplyType.js
Executable file
10
common/enum/dealer/apply/ApplyType.js
Executable file
@@ -0,0 +1,10 @@
|
||||
import Enum from '../../enum'
|
||||
|
||||
/**
|
||||
* 枚举类:分销商申请方式
|
||||
* ApplyTypeEnum
|
||||
*/
|
||||
export default new Enum([
|
||||
{ key: 'AUDIT', name: '需后台审核', value: 10 },
|
||||
{ key: 'PASS', name: '无需审核', value: 20 }
|
||||
])
|
||||
4
common/enum/dealer/apply/index.js
Executable file
4
common/enum/dealer/apply/index.js
Executable file
@@ -0,0 +1,4 @@
|
||||
import ApplyStatusEnum from './ApplyStatus'
|
||||
import ApplyTypeEnum from './ApplyType'
|
||||
|
||||
export { ApplyStatusEnum, ApplyTypeEnum }
|
||||
Reference in New Issue
Block a user