diff --git a/application/wiki/controller/Base.php b/application/wiki/controller/Base.php index 8eb1a00..9c8c8aa 100644 --- a/application/wiki/controller/Base.php +++ b/application/wiki/controller/Base.php @@ -8,13 +8,13 @@ namespace app\wiki\controller; -use think\Config; +use think\facade\Config; use think\Controller; use think\exception\HttpResponseException; -use think\Request; -use think\Response; -use think\View as ViewTemplate; -use think\Url; +use think\facade\Request; +use think\facade\Response; +use think\facade\View as ViewTemplate; +use think\facade\Url; class Base extends Controller { diff --git a/application/wiki/controller/Index.php b/application/wiki/controller/Index.php index 671da98..3cc908a 100644 --- a/application/wiki/controller/Index.php +++ b/application/wiki/controller/Index.php @@ -58,7 +58,7 @@ class Index extends Base { } } - $apiList = (new AdminList())->whereIn('hash', $this->appInfo['app_api_show'][$groupHash])->where(['groupHash' => $groupHash])->select(); + $apiList = (new AdminList())->whereIn('hash', $this->appInfo['app_api_show'][$groupHash])->where(['group_hash' => $groupHash])->select(); $apiList = Tools::buildArrFromObj($apiList); $apiList = Tools::buildArrByNewKey($apiList, 'hash'); diff --git a/application/wiki/view/index/detail.html b/application/wiki/view/index/detail.html index 66bf604..83483f2 100644 --- a/application/wiki/view/index/detail.html +++ b/application/wiki/view/index/detail.html @@ -6,8 +6,8 @@ - - + +
参数名字 | 类型 | 是否必须 | 默认值 | 其他 | 说明 | |
---|---|---|---|---|---|---|
参数名字 | 类型 | 字段状态 | 默认值 | 其他 | 说明 | |
access-token | String | -{$detail['accessToken']==1?'必填':'勿填'} | +{$detail['access_token']==1?'复杂认证':'简易认证'} | APP认证秘钥【请在Header头里面传递】 | ||
user-token | -String | -{$detail['needLogin']==1?'必填':'勿填'} | -- | - | 用户认证秘钥【请在Header头里面传递】 | -