截流自动化的商城平台
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.

AdValidate.php 2.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\admin\validate\decoration;
  20. use app\common\basics\Validate;
  21. use think\facade\Db;
  22. class AdValidate extends Validate{
  23. protected $rule = [
  24. 'id' => 'require',
  25. 'title' => 'require|unique:ad,title^del^terminal',
  26. 'pid' => 'require|checkPid|checkCategory',
  27. 'image' => 'require',
  28. ];
  29. protected $message = [
  30. 'id.require' => '请选择广告',
  31. 'title.require' => '请输入广告名称',
  32. 'title.unique' => '广告名称已存在',
  33. 'pid.require' => '请选择广告位',
  34. 'image.require' => '请上传广告图',
  35. ];
  36. public function sceneAdd(){
  37. return $this->remove('id',['require']);
  38. }
  39. public function sceneDel(){
  40. return $this->only(['id']);
  41. }
  42. public function sceneSwtich(){
  43. return $this->only(['id']);
  44. }
  45. public function checkPid($value,$rule,$data){
  46. $ad_position = Db::name('ad_position')
  47. ->where(['id'=>$value,'del'=>0])
  48. ->find();
  49. if(empty($ad_position)){
  50. return '广告位不存在';
  51. }
  52. return true;
  53. }
  54. public function checkCategory($value,$rule,$data){
  55. //选择了分类广告位,验证分类
  56. if(in_array($value,[3,4])){
  57. if(empty($data['category_id'])){
  58. return '请选择商品分类';
  59. }
  60. $category = Db::name('goods_category')
  61. ->where(['id'=>$data['category_id'],'del'=>0])
  62. ->find();
  63. if(empty($category)){
  64. return '商品分类不存在';
  65. }
  66. }
  67. return true;
  68. }
  69. }