| 
									
										
										
										
											2021-11-18 17:57:04 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace app\validate; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | use think\Validate; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class User extends Validate | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     protected $rule = [ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         'code|小程序code'    => 'require', | 
					
						
							| 
									
										
										
										
											2021-11-24 16:19:54 +08:00
										 |  |  |         'nick_name|昵称'     => 'max:100', | 
					
						
							|  |  |  |         'avatar_url|头像'   => 'max:250', | 
					
						
							|  |  |  |         'gender|性别'       => 'number', | 
					
						
							| 
									
										
										
										
											2021-12-15 15:04:20 +08:00
										 |  |  |         'lat|位置'          => 'require|>:0', | 
					
						
							|  |  |  |         'lng|位置'          => 'require|>:0', | 
					
						
							| 
									
										
										
										
											2021-11-18 17:57:04 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     protected $scene = [ | 
					
						
							|  |  |  |         // 微信小程序登录
 | 
					
						
							| 
									
										
										
										
											2021-12-15 15:04:20 +08:00
										 |  |  |         'wx_applets' => ['code', 'nick_name', 'gender',"lat","lng"], | 
					
						
							| 
									
										
										
										
											2021-11-18 17:57:04 +08:00
										 |  |  |     ]; | 
					
						
							|  |  |  | } |