截流自动化的商城平台
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

BargainValidate.php 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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;
  20. use app\common\basics\Validate;
  21. /**
  22. * 砍价活动 数据校验
  23. * Class BargainValidate
  24. * @Author 张无忌
  25. * @package app\admin\validate
  26. */
  27. class BargainValidate extends Validate
  28. {
  29. protected $rule = [
  30. 'id' => 'require|number',
  31. 'description' => [ 'requireCallback' => 'checkRequireDescription' ],
  32. 'goods_id' => 'require|number',
  33. 'time_limit' => 'require',
  34. 'activity_start_time' => 'require',
  35. 'activity_end_time' => 'require|endTime',
  36. 'payment_where' => 'require|in:1,2',
  37. 'knife_type' => 'require|in:1,2',
  38. 'status' => 'require|in:0,1'
  39. ];
  40. protected $message = [
  41. 'id' => 'ID不可为空',
  42. 'description' => '请填写审核备注',
  43. 'id.number' => 'ID必须为数字',
  44. 'goods_id.require' => '未选择砍价商品',
  45. 'goods_id.number' => '选择砍价商品异常',
  46. 'time_limit.require' => '请填写砍价活动有效期',
  47. 'time_limit.number' => '砍价活动有效期必须为数字',
  48. 'activity_start_time.require' => '请选择活动开始时间',
  49. 'activity_end_time.require' => '请选择活动结束时间',
  50. 'payment_where.require' => '请选择购买方式',
  51. 'payment_where.number' => '选择的购买方式异常',
  52. 'knife_type.require' => '请选择砍价金额方式',
  53. 'knife_type.number' => '选择的砍价方式异常',
  54. 'status.require' => '请选择砍价活动状态',
  55. 'status.in' => '砍价状态选择异常',
  56. ];
  57. protected $scene = [
  58. 'add' => ['goods_id','time_limit','activity_start_time','activity_end_time','payment_where','knife_type','status'],
  59. 'edit' => ['id','goods_id','time_limit','activity_start_time','activity_end_time','payment_where','knife_type','status'],
  60. 'audit' => ['id','description'],
  61. 'violation' => ['id','description'],
  62. ];
  63. /**
  64. * @notes 验证起始时间
  65. * @param $value
  66. * @param $rule
  67. * @param $data
  68. * @return bool|string
  69. * @author suny
  70. * @date 2021/7/14 10:11 上午
  71. */
  72. public function endTime($value, $rule, $data)
  73. {
  74. if (strtotime($value) <= time()) {
  75. return '结束时间不能少于当前时间';
  76. }
  77. if (strtotime($value) <= strtotime($data['activity_start_time'])) {
  78. return '结束时间不能少于或等于开始时间';
  79. }
  80. return true;
  81. }
  82. function checkRequireDescription($value, $data)
  83. {
  84. if ($this->currentScene == 'audit' && $data['review_status'] == 1) {
  85. return false;
  86. }
  87. return true;
  88. }
  89. }