| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- export const UserRole = {
- admin: '管理员',
- team: '队长',
- promoter: '推广员',
- user: '用户',
- }
- export const ConfigType = {
- string: '字符串',
- date: '日期',
- number: '数字',
- boolean: '布尔值',
- object: '对象',
- file: '文件',
- time_range: '时间范围',
- range: '范围'
- }
- export const ChainType = {
- btc: 'btc',
- eth: 'eth',
- bsc: 'bsc',
- tron: 'tron',
- sol: 'sol'
- }
- export const PlatformType = {
- Android: 'Android',
- iOS: 'iOS',
- PC: 'PC'
- }
- export const FinanceStatus = {
- withdrawn: '已提现',
- rejected: '申请驳回',
- processing: '处理中'
- }
- export const IncomeType = {
- tip: '打赏收入',
- commission: '返佣收入'
- }
- export const OrderType = {
- single_tip: '单片打赏',
- hourly_member: '包时会员',
- weekly_member: '包周会员',
- monthly_member: '包月会员',
- yearly_member: '包年会员',
- lifetime_member: '终身会员'
- }
- export const LinkType = {
- general: '通用链接',
- super: '超级链接',
- browser: '浏览器链接'
- }
|