第一次提交
This commit is contained in:
12
common/enum/dealer/withdraw/ApplyStatus.js
Executable file
12
common/enum/dealer/withdraw/ApplyStatus.js
Executable file
@@ -0,0 +1,12 @@
|
||||
import Enum from '../../enum'
|
||||
|
||||
/**
|
||||
* 枚举类:分销商提现申请状态
|
||||
* ApplyStatusEnum
|
||||
*/
|
||||
export default new Enum([
|
||||
{ key: 'WAIT', name: '待审核', value: 10 },
|
||||
{ key: 'PASSED', name: '审核通过', value: 20 },
|
||||
{ key: 'REJECT', name: '驳回', value: 30 },
|
||||
{ key: 'PAYMENT', name: '已打款', value: 40 }
|
||||
])
|
||||
11
common/enum/dealer/withdraw/PayType.js
Executable file
11
common/enum/dealer/withdraw/PayType.js
Executable file
@@ -0,0 +1,11 @@
|
||||
import Enum from '../../enum'
|
||||
|
||||
/**
|
||||
* 枚举类:分销商体现打款方式
|
||||
* PayTypeEnum
|
||||
*/
|
||||
export default new Enum([
|
||||
{ key: 'WECHAT', name: '微信零钱', value: 10 },
|
||||
{ key: 'ALIPAY', name: '支付宝', value: 20 },
|
||||
{ key: 'BANK_CARD', name: '银行卡', value: 30 }
|
||||
])
|
||||
4
common/enum/dealer/withdraw/index.js
Executable file
4
common/enum/dealer/withdraw/index.js
Executable file
@@ -0,0 +1,4 @@
|
||||
import PayTypeEnum from './PayType'
|
||||
import ApplyStatusEnum from './ApplyStatus'
|
||||
|
||||
export { PayTypeEnum, ApplyStatusEnum }
|
||||
Reference in New Issue
Block a user