HouseLessee.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. namespace app\common\validate;
  3. use think\Validate;
  4. use think\Db;
  5. class HouseLessee extends Validate{
  6. protected $rule = [
  7. 'title|名称' => 'require|checkUnique',
  8. 'phone|电话' => 'require', // 不验证手机号
  9. ];
  10. protected $scene = [
  11. ];
  12. protected function checkUnique($value,$rule,$data=[])
  13. {
  14. $info = Db::name('house_lessee')
  15. ->where('title',$data['title'])
  16. ->where('type',$data['type'])
  17. ->where('org_id',$data['org_id'])
  18. ->where('del',0)
  19. ->find();
  20. if($data['id'] <= 0 && $info){
  21. return '名称已被使用';
  22. }
  23. if($info && $data['id'] > 0 && $info['id'] != $data['id']){
  24. return '名称已被使用';
  25. }
  26. return true;
  27. }
  28. // 自定义验证规则
  29. protected function checkPhone($value,$rule,$data=[])
  30. {
  31. if(!check_mobile($value)){
  32. return '手机号格式不正确';
  33. }
  34. // $info = Db::name('house_lessee')->where('phone',$data['phone'])->where('del',0)->find();
  35. // if($data['id'] <= 0 && $info){
  36. // return '手机号已被使用';
  37. // }
  38. // if($info && $data['id'] > 0 && $info['id'] != $data['id']){
  39. // return '手机号已被使用';
  40. // }
  41. return true;
  42. }
  43. }