dictionary.js 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. export const accountMenus = [
  2. {
  3. type: 'settlement',
  4. title: '结算记录',
  5. icon: '/static/finance/account/settlement.png',
  6. path: '/packageC/pages/mine/settlementRecord/index',
  7. },
  8. {
  9. type: 'pending',
  10. title: '待结算明细',
  11. icon: '/static/finance/account/pending.png',
  12. path: '/packageC/pages/mine/settlementRecord/index',
  13. },
  14. {
  15. type: 'auditing',
  16. title: '提现审核中',
  17. icon: '/static/finance/account/auditing.png',
  18. path: '/packageC/pages/mine/settlementRecord/index',
  19. },
  20. {
  21. type: 'completed',
  22. title: '已提现明细',
  23. icon: '/static/finance/account/completed.png',
  24. path: '/packageC/pages/mine/settlementRecord/index',
  25. },
  26. ];
  27. export const orderFields = [
  28. {
  29. title: '订单编号',
  30. valueField: 'orderId',
  31. isShowTip: false,
  32. },
  33. {
  34. title: '商品名称',
  35. valueField: 'productName',
  36. isShowTip: false,
  37. },
  38. {
  39. title: '下单时间',
  40. valueField: 'buyTime',
  41. isShowTip: false,
  42. },
  43. {
  44. title: '核销时间',
  45. valueField: 'writeOffTime',
  46. isShowTip: false,
  47. },
  48. {
  49. title: '订单金额',
  50. valueField: 'orderPrice',
  51. isShowTip: false,
  52. },
  53. {
  54. title: '实付金额',
  55. valueField: 'actualPayAmount',
  56. isShowTip: false,
  57. },
  58. {
  59. title: '应收金额',
  60. valueField: 'payableToMerchant',
  61. isShowTip: false,
  62. },
  63. {
  64. title: '邀新分佣成本',
  65. valueField: 'inviteNewUserCommissionMerchantCost',
  66. rateField: 'inviteNewUserCommissionMerchantRate',
  67. isShowTip: true,
  68. key: 'inviteNew',
  69. },
  70. {
  71. title: '优惠券成本',
  72. valueField: 'couponMerchantCost',
  73. rateField: 'couponMerchantRate',
  74. isShowTip: true,
  75. key: 'coupon',
  76. },
  77. {
  78. title: '会员折扣成本',
  79. valueField: 'memberDiscountMerchantCost',
  80. rateField: 'memberDiscountMerchantRate',
  81. isShowTip: true,
  82. key: 'member',
  83. },
  84. {
  85. title: '金豆抵扣成本',
  86. valueField: 'jinbiMerchantCost',
  87. rateField: 'jinbiMerchantRate',
  88. isShowTip: true,
  89. key: 'jinbi',
  90. },
  91. {
  92. title: '推广分佣成本',
  93. valueField: 'distributorCommissionMerchantCost',
  94. rateField: 'distributorCommissionMerchantRate',
  95. isShowTip: true,
  96. key: 'distributor',
  97. },
  98. ]