王总上门按摩后台代码
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.
 
 
 
 
 
shangmenanmo/app/agent/validate/AgentAdminValidate.php

27 lines
481 B

<?php
namespace app\agent\validate;
use think\Validate;
class AgentAdminValidate extends Validate
{
protected $rule = [
'admin_id' => ['require'],
'status' => ['require','number', 'in' => [-1, 0, 1]],
'account|名字' => ['require'],
'passwd|密码' => [ 'require'],
];
protected $scene = [
'addSubAdmin' => ['account', 'passwd'],
'updateSubAdmin' => ['passwd'],
'delSubAdmin' => ['admin_id']
];
}