新增获取操作手册详情接口

This commit is contained in:
2023-02-24 12:00:31 +08:00
parent 9fc01059ef
commit 4f90c65e8a
5 changed files with 42 additions and 8 deletions
+7 -7
View File
@@ -16,13 +16,13 @@ class Auth
$this->whiteApi = [
"/" => "*",
"/patient/index" => "get",
"/login/wechat_mobile_login" => "post",
"/login/mobile_login" => "post",
"/code/phone" => "post",
"/disease/expertise" => "get",
"/area/province" => "get",
"/area/city" => "get",
"/area/county" => "get",
"/login/wechat_mobile_login" => "post", // 微信登陆
"/login/mobile_login" => "post", // 手机号登陆
"/code/phone" => "post",// 获取手机号验证码
"/disease/expertise" => "get",// 疾病专长列表-搜索使用
"/area/province" => "get",// 获取省份信息
"/area/city" => "get", // 获取城市信息
"/area/county" => "get", // 获取区县信息
];
}