123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\validate\admin;
- use think\Validate;
- /**
- * Class MerchantValidate
- * @package app\validate\admin
- * @author xaboy
- * @day 2020-04-17
- */
- class MerchantValidate extends Validate
- {
- /**
- * @var bool
- */
- protected $failException = true;
- /**
- * @var array
- */
- protected $rule = [
- 'category_id|商户分类' => 'require',
- 'type_id|店铺类型' => 'integer',
- 'mer_name|商户名称' => 'require|max:32',
- 'mer_account|商户账号' => 'require|alphaNum|min:4|max:16',
- 'mer_password|商户密码' => 'require|min:4|max:16',
- 'real_name|商户姓名' => 'max:16',
- 'mer_phone|商户手机号' => 'require',
- 'sort|排序' => 'require',
- 'mer_keyword|商户关键字' => 'max:64',
- 'mer_address|商户地址' => 'max:64',
- 'mark|备注' => 'max:64',
- 'status|开启状态' => 'require|in:0,1',
- 'is_audit|产品审核状态' => 'require|in:0,1',
- 'is_best|推荐状态' => 'require|in:0,1',
- 'is_bro_goods|直播商品状态' => 'require|in:0,1',
- 'is_bro_room|直播间状态' => 'require|in:0,1',
- 'is_trader|自营状态' => 'require|in:0,1',
- 'commission_rate|提成比例' => '>=:0'
- ];
- /**
- * @return $this
- * @author xaboy
- * @day 2020-04-17
- */
- public function isUpdate()
- {
- unset($this->rule['mer_account|商户账号'], $this->rule['mer_password|商户密码'], $this->rule['status|开启状态']);
- return $this;
- }
- }
|