67 lines
2.9 KiB
PHP
67 lines
2.9 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | likeshop开源商城系统
|
||
// +----------------------------------------------------------------------
|
||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||
// | 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系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
|
||
// | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
|
||
// | 禁止对系统程序代码以任何目的,任何形式的再发布
|
||
// | likeshop团队版权所有并拥有最终解释权
|
||
// +----------------------------------------------------------------------
|
||
// | author: likeshop.cn.team
|
||
// +----------------------------------------------------------------------
|
||
namespace app\admin\validate;
|
||
use think\Db;
|
||
use think\Validate;
|
||
|
||
class UserLevel extends Validate{
|
||
protected $rule = [
|
||
'id' => 'require',
|
||
'name' => 'require|unique:user_level,name^del',
|
||
'growth_value' => 'require',
|
||
// 'remark' => 'require',
|
||
'image' => 'require',
|
||
'background_image' => 'require',
|
||
'privilege' => 'checkPrivilege',
|
||
'discount' => 'between:0,10',
|
||
];
|
||
protected $message = [
|
||
'name.require' => '请输入等级名称',
|
||
'name.unique' => '等级名称已存在',
|
||
'growth_value.require' => '请输入成长值',
|
||
'remark.require' => '请输入等级说明',
|
||
'image.require' => '请上传等级图标',
|
||
'background_image.require' => '请上传等级背景图',
|
||
'discount.between' => '请填写0~10的折扣',
|
||
];
|
||
protected function sceneAdd(){
|
||
$this->remove(['id']);
|
||
}
|
||
protected function sceneDel(){
|
||
$this->only(['id'])->append('id','checkUser');
|
||
}
|
||
|
||
public function checkUser($value,$rule,$data){
|
||
if(\app\admin\model\User::get(['level'=>$value,'del'=>0])){
|
||
return '该等级被使用,不允许删除';
|
||
}
|
||
return true;
|
||
}
|
||
public function checkPrivilege($value,$rule,$data){
|
||
$privileges = explode(',',$value);
|
||
$privilege_list = Db::name('user_privilege')->where(['del'=>0])->column('id');
|
||
|
||
$privilege_diff = array_diff($privileges,$privilege_list);
|
||
if($privilege_diff){
|
||
return '会员权益信息错误';
|
||
}
|
||
|
||
return true;
|
||
}
|
||
} |