dict.js 995 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /**
  2. * Created by 芋道源码
  3. *
  4. * 数据字典工具类
  5. */
  6. export const DICT_TYPE = {
  7. // ========== MALL - 交易模块 ==========
  8. BROKERAGE_BANK_NAME: 'brokerage_bank_name', // 佣金提现银行
  9. BROKERAGE_WITHDRAW_TYPE: 'brokerage_withdraw_type', // 佣金提现类型
  10. }
  11. /**
  12. * 佣金提现类型枚举
  13. */
  14. export const BrokerageWithdrawTypeEnum = {
  15. WALLET: {
  16. type: 1,
  17. name: '钱包',
  18. icon: 'icon-qiandai'
  19. },
  20. BANK: {
  21. type: 2,
  22. name: '银行卡',
  23. icon: 'icon-yinhangqia'
  24. },
  25. WECHAT: {
  26. type: 3,
  27. name: '微信',
  28. icon: 'icon-weixin2'
  29. },
  30. ALIPAY: {
  31. type: 4,
  32. name: '支付宝',
  33. icon: 'icon-icon34'
  34. }
  35. }
  36. /** 终端的枚举 */
  37. export const TerminalEnum = {
  38. WECHAT_MINI_PROGRAM: {
  39. terminal: 10,
  40. name: '微信小程序'
  41. },
  42. WECHAT_WAP: {
  43. terminal: 11,
  44. name: '微信公众号'
  45. },
  46. H5: {
  47. terminal: 20,
  48. name: 'H5 网页'
  49. },
  50. APP: {
  51. terminal: 31,
  52. name: '手机 App'
  53. }
  54. }