截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LevelValidate.php 1.1KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. namespace app\admin\validate\user;
  3. use think\Validate;
  4. class LevelValidate extends Validate
  5. {
  6. protected $rule = [
  7. 'id' => 'require',
  8. 'name' => 'require',
  9. 'growth_value' => 'require|integer|egt:0',
  10. 'image' => 'require',
  11. 'background_image' => 'require',
  12. 'discount' => 'between:0,10'
  13. ];
  14. protected $message = [
  15. 'id.require' => '参数缺失',
  16. 'name.require' => '请输入等级名称',
  17. 'growth_value.require' => '请输入成长值',
  18. 'growth_value.integer' => '成长值必须为整数',
  19. 'growth_value.egt' => '成长值必须大于或等于0',
  20. 'image.require' => '请选择等级图标',
  21. 'background_image.require' => '请选择等级背景图',
  22. 'discount.between' => '会员折扣必须在0-10之前',
  23. ];
  24. public function sceneAdd() {
  25. return $this->only(['name', 'growth_value', 'image', 'background_image', 'discount']);
  26. }
  27. public function sceneEdit() {
  28. return $this->only(['id', 'name', 'growth_value', 'image', 'background_image', 'discount']);
  29. }
  30. }