添加网站文件

This commit is contained in:
2025-12-22 13:59:40 +08:00
commit 117aaf83d1
19468 changed files with 2111999 additions and 0 deletions

View File

@@ -0,0 +1,98 @@
<?php
// +----------------------------------------------------------------------
// | likeshop100%开源免费商用商城系统
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | 商业版本务必购买商业授权,以免引起法律纠纷
// | 禁止对系统程序代码以任何目的,任何形式的再发布
// | gitee下载https://gitee.com/likeshop_gitee
// | github下载https://github.com/likeshop-github
// | 访问官网https://www.likeshop.cn
// | 访问社区https://home.likeshop.cn
// | 访问手册http://doc.likeshop.cn
// | 微信公众号likeshop技术社区
// | likeshop团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeshopTeam
// +----------------------------------------------------------------------
namespace app\admin\validate;
use think\Db;
use think\Validate;
class DistributionMember extends Validate
{
protected $rule = [
'id|参数缺失' => 'require',
'type|参数缺失' => 'require',
'user_id|参数缺失' => 'require',
'change_type|参数缺失' => 'require',
'referrer_sn' => 'requireIf:change_type,appoint|checkReferrer',
// 添加分销会员场景
'sn' => 'require|max:10', //会员编号
'remarks' => 'max:100' //分销会员添加备注信息
];
protected $message = [
'referrer_sn.requireIf' => '请填写上级推荐人的编号',
'sn.require' => '请填写会员编号',
'remarks.max' => '备注信息不能超过100个字符'
];
//添加分销会员
public function sceneAddMember()
{
$this->only(['sn', 'remarks']);
}
//审核分销会员
public function sceneAudit()
{
$this->only(['id', 'type']);
}
//冻结/解冻分销会员
public function sceneFreeze()
{
$this->only(['id', 'type']);
}
//修改上级
public function sceneUpdateLeader()
{
$this->only(['user_id', 'change_type', 'referrer_sn']);
}
//验证推荐人
protected function checkReferrer($value, $rule, $data = [])
{
if (empty($value) && $data['change_type'] == 'clear'){
return true;
}
$referrer = Db::name('user')->where('sn', $value)->find();
if (!$referrer){
return '推荐人不存在';
}
if ($referrer['id'] == $data['user_id']){
return '上级推荐人不能是自己';
}
if ($referrer['is_distribution'] == 0){
return '对方不是分销会员';
}
$ancestor_relation = explode(',', $referrer['ancestor_relation']);
if (!empty($ancestor_relation) && in_array($data['user_id'], $ancestor_relation)) {
return '不能循环推荐';
}
return true;
}
}