123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- namespace app\common\validate;
- use think\Validate;
- use think\Db;
- class HouseLessee extends Validate{
- protected $rule = [
- 'title|名称' => 'require|checkUnique',
- 'phone|电话' => 'require', // 不验证手机号
- ];
- protected $scene = [
- ];
- protected function checkUnique($value,$rule,$data=[])
- {
- $info = Db::name('house_lessee')
- ->where('title',$data['title'])
- ->where('type',$data['type'])
- ->where('org_id',$data['org_id'])
- ->where('del',0)
- ->find();
- if($data['id'] <= 0 && $info){
- return '名称已被使用';
- }
- if($info && $data['id'] > 0 && $info['id'] != $data['id']){
- return '名称已被使用';
- }
- return true;
- }
- // 自定义验证规则
- protected function checkPhone($value,$rule,$data=[])
- {
- if(!check_mobile($value)){
- return '手机号格式不正确';
- }
- // $info = Db::name('house_lessee')->where('phone',$data['phone'])->where('del',0)->find();
- // if($data['id'] <= 0 && $info){
- // return '手机号已被使用';
- // }
- // if($info && $data['id'] > 0 && $info['id'] != $data['id']){
- // return '手机号已被使用';
- // }
- return true;
- }
- }
|