From 06be1c7ccc7533612e4cc7b0e730080d0dd3d2a1 Mon Sep 17 00:00:00 2001
From: quanwei <419654421@qq.com>
Date: Fri, 16 Jan 2026 11:43:36 +0800
Subject: [PATCH] 商品可以赠送优惠券 商品属性增加团购 入驻商家增加实物和团购选项 团购和实物商户分类分开 增加团购商家页面 后台添加页面增加团购组件
---
admin/app/common/enum/plus/vip/VipAreaTypeEnum.php | 19 +++++++++++++++----
1 files changed, 15 insertions(+), 4 deletions(-)
diff --git a/admin/app/common/enum/plus/vip/VipAreaTypeEnum.php b/admin/app/common/enum/plus/vip/VipAreaTypeEnum.php
index 66dde8e..027573d 100644
--- a/admin/app/common/enum/plus/vip/VipAreaTypeEnum.php
+++ b/admin/app/common/enum/plus/vip/VipAreaTypeEnum.php
@@ -8,8 +8,15 @@
{
const NORMAL = 10; // 推广
const REFERRAL = 20; // 推广复购
- const VIP_SUBSIDY = 30; // VIP专区补贴
+ const VIP_SUBSIDY = 30; // 下级收益补贴
const DIRECT_REFEREE = 40; // 平台直推佣金
+ const DIRECT_SUPPLIER = 50; // 推广店铺交易额佣金
+
+ const VIEWPOINT_MONEY = 60; // 见点佣金
+ const DIFFERENTIALPRIZE=70;//级差
+ const EQUALLEVELAWARD= 80;//平级奖
+
+
/**
* 获取VIP专区订单类型名称
@@ -18,10 +25,14 @@
public static function getTypeName()
{
return [
- self::NORMAL => '推广',
- self::REFERRAL => '推广复购',
- self::VIP_SUBSIDY => 'VIP专区收益补贴',
+ self::NORMAL => '推广佣金',
+ self::REFERRAL => '推广复购佣金',
+ self::VIP_SUBSIDY => '下级收益补贴',
self::DIRECT_REFEREE => '平台直推佣金',
+ self::DIRECT_SUPPLIER => '推广店铺交易额佣金',
+ self::VIEWPOINT_MONEY => '见点佣金',
+ self::DIFFERENTIALPRIZE=> '级差奖',
+ self::EQUALLEVELAWARD=> '平级奖',
];
}
--
Gitblit v1.9.2