| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- export const accountMenus = [
- {
- type: 'settlement',
- title: '结算记录',
- icon: '/static/finance/account/settlement.png',
- path: '/packageC/pages/mine/settlementRecord/index',
- },
- {
- type: 'pending',
- title: '待结算明细',
- icon: '/static/finance/account/pending.png',
- path: '/packageC/pages/mine/settlementRecord/index',
- },
- {
- type: 'auditing',
- title: '提现审核中',
- icon: '/static/finance/account/auditing.png',
- path: '/packageC/pages/mine/settlementRecord/index',
- },
- {
- type: 'completed',
- title: '已提现明细',
- icon: '/static/finance/account/completed.png',
- path: '/packageC/pages/mine/settlementRecord/index',
- },
- ];
- export const orderFields = [
- {
- title: '订单编号',
- valueField: 'orderId',
- isShowTip: false,
- },
- {
- title: '商品名称',
- valueField: 'productName',
- isShowTip: false,
- },
- {
- title: '下单时间',
- valueField: 'buyTime',
- isShowTip: false,
- },
- {
- title: '核销时间',
- valueField: 'writeOffTime',
- isShowTip: false,
- },
- {
- title: '订单金额',
- valueField: 'orderPrice',
- isShowTip: false,
- },
- {
- title: '实付金额',
- valueField: 'actualPayAmount',
- isShowTip: false,
- },
- {
- title: '应收金额',
- valueField: 'payableToMerchant',
- isShowTip: false,
- },
- {
- title: '邀新分佣成本',
- valueField: 'inviteNewUserCommissionMerchantCost',
- rateField: 'inviteNewUserCommissionMerchantRate',
- isShowTip: true,
- key: 'inviteNew',
- },
- {
- title: '优惠券成本',
- valueField: 'couponMerchantCost',
- rateField: 'couponMerchantRate',
- isShowTip: true,
- key: 'coupon',
- },
- {
- title: '会员折扣成本',
- valueField: 'memberDiscountMerchantCost',
- rateField: 'memberDiscountMerchantRate',
- isShowTip: true,
- key: 'member',
- },
- {
- title: '金豆抵扣成本',
- valueField: 'jinbiMerchantCost',
- rateField: 'jinbiMerchantRate',
- isShowTip: true,
- key: 'jinbi',
- },
- {
- title: '推广分佣成本',
- valueField: 'distributorCommissionMerchantCost',
- rateField: 'distributorCommissionMerchantRate',
- isShowTip: true,
- key: 'distributor',
- },
- ]
- export const groupMealFields = [
- {
- title: '订单编号',
- valueField: 'statementNumber',
- isShowTip: false,
- },
- {
- title: '成团时间',
- valueField: 'groupMealTime',
- isShowTip: false,
- },
- {
- title: '成团价',
- valueField: 'groupMealPrice',
- isShowTip: false,
- },
- {
- title: '应收金额',
- valueField: 'amountPayable',
- isShowTip: false,
- },
- {
- title: '拉新分佣成本',
- valueField: 'newUserCommission',
- rateField: 'newUserCommissionRate',
- isShowTip: true,
- key: 'newUser',
- }
- ]
- export const serveMealFields = [
- {
- title: '订单编号',
- valueField: 'orderId',
- isShowTip: false,
- },
- {
- title: '商品名称',
- valueField: 'productName',
- isShowTip: false,
- },
- {
- title: '下单时间',
- valueField: 'buyTime',
- isShowTip: false,
- },
- {
- title: '核销时间',
- valueField: 'writeOffTime',
- isShowTip: false,
- },
- {
- title: '订单总金额',
- valueField: 'sumAmount',
- isShowTip: false,
- },
- {
- title: '用户实付总金额',
- valueField: 'actualPayAmount',
- isShowTip: false,
- },
- {
- title: '商家应收金额',
- valueField: 'payableToMerchant',
- isShowTip: false,
- },
- {
- title: '平台优惠券成本',
- valueField: 'couponPlatformCost',
- rateField: 'couponMerchantRate',
- isShowTip: true,
- key: 'couponMerchantRate',
- },
- {
- title: '金豆抵扣成本',
- valueField: 'costGoldMerchant',
- rateField: 'goldMerchantRate',
- isShowTip: true,
- key: 'goldMerchantRate',
- },
- {
- title: '权益券抵扣金额',
- valueField: 'rightsExchangeMoney',
- isShowTip: false,
- },
- ]
|