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

GoodsRenewValidate.php 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php
  2. /*
  3. * @Author: ZMH
  4. * @Email: zmhwork@qq.com
  5. * @Date: 2025-03-13 15:21:41
  6. * @LastEditTime: 2025-03-13 16:13:45
  7. * @LastEditors: ZMH
  8. * @FilePath: \opkpm\app\admin\validate\shop\GoodsRenewValidate.php
  9. *
  10. * @Description: 续费验证
  11. */
  12. namespace app\admin\validate\shop;
  13. use app\common\basics\Validate;
  14. use app\common\model\shop\ShopGoodsRenew;
  15. class GoodsRenewValidate extends Validate
  16. {
  17. protected $rule = [
  18. 'id' => 'require|number',
  19. 'name|套餐名称' => 'require|max:32|checkExist',
  20. 'price|套餐价格' => 'require|checkPrice',
  21. 'type_id|套餐类型' => 'require|number|in:0,1',
  22. 'op_count|套餐操作次数' => 'require|number|min:1',
  23. 'status|套餐状态' => 'require|number|in:0,1',
  24. 'sort|排序' => 'number',
  25. ];
  26. protected $message = [
  27. 'id.require' => 'ID不可为空',
  28. 'id.number' => 'ID必须为数字',
  29. ];
  30. protected $scene = [
  31. 'id' => ['id'],
  32. 'add' => ['name', 'price', 'type_id', 'op_count', 'status'],
  33. 'edit' => ['id', 'name', 'price', 'type_id', 'op_count', 'sort', 'status'],
  34. 'del' => ['id'],
  35. ];
  36. public static function checkExist($value, $rule, $data=[])
  37. {
  38. $where = [];
  39. if (isset($data['id'])) {
  40. $where[] = ['id', '<>', $data['id']];
  41. }
  42. $where[] = ['name', '=', $value];
  43. $res = ShopGoodsRenew::where($where)->find();
  44. if ($res) {
  45. return '该名称已存在';
  46. }
  47. return true;
  48. }
  49. public static function checkPrice($value, $rule, $data=[])
  50. {
  51. $isAmount = preg_match('/^\d+(\.\d{1,2})?$/', $value);
  52. if(!$isAmount){
  53. return '价格填写格式-不是金额';
  54. }
  55. return true;
  56. }
  57. }