diff --git a/app/admin/view/config/index.html b/app/admin/view/config/index.html index 2c5b8fb6c..f4245d585 100644 --- a/app/admin/view/config/index.html +++ b/app/admin/view/config/index.html @@ -76,11 +76,11 @@ 管理程序 - ThinkAdmin {$app->config->get('app.thinkadmin_ver','v6')} + ThinkAdmin Version {$app->config->get('app.thinkadmin_ver','v6')} 核心框架 - ThinkPHP {$app->version()} + ThinkPHP Version {$app->version()} 服务器信息 @@ -91,12 +91,12 @@ {$request->server('SERVER_SOFTWARE',php_sapi_name())} - PHP版本 + PHP 版本 PHP Version {$Think.const.PHP_VERSION} - MySQL版本 - {$app->db->query('SELECT VERSION()')[0]['VERSION()']} + MySQL 版本 + MySQL Version {$app->db->query('SELECT VERSION()')[0]['VERSION()']} diff --git a/app/admin/view/queue/index.html b/app/admin/view/queue/index.html index 36cd7d7ff..62285dcc9 100644 --- a/app/admin/view/queue/index.html +++ b/app/admin/view/queue/index.html @@ -15,7 +15,7 @@ {/if} {if auth("clear")} - + {/if} {/block} diff --git a/composer.lock b/composer.lock index 76bc1f34a..7ac8c5efd 100644 --- a/composer.lock +++ b/composer.lock @@ -909,12 +909,12 @@ "source": { "type": "git", "url": "https://github.com/zoujingli/ThinkLibrary.git", - "reference": "6376bf39396292e9920b43f917d9e3dc307ef898" + "reference": "be60abc6b39cbeca57a0b25f8e1a3d38e18307c0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/6376bf39396292e9920b43f917d9e3dc307ef898", - "reference": "6376bf39396292e9920b43f917d9e3dc307ef898", + "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/be60abc6b39cbeca57a0b25f8e1a3d38e18307c0", + "reference": "be60abc6b39cbeca57a0b25f8e1a3d38e18307c0", "shasum": "", "mirrors": [ { @@ -958,7 +958,7 @@ ], "description": "ThinkPHP v6.0 Development Library", "homepage": "http://framework.thinkadmin.top", - "time": "2020-01-16T03:30:15+00:00" + "time": "2020-02-28T01:51:28+00:00" }, { "name": "zoujingli/wechat-developer", diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 9d2041594..5c74c7380 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -935,12 +935,12 @@ "source": { "type": "git", "url": "https://github.com/zoujingli/ThinkLibrary.git", - "reference": "6376bf39396292e9920b43f917d9e3dc307ef898" + "reference": "be60abc6b39cbeca57a0b25f8e1a3d38e18307c0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/6376bf39396292e9920b43f917d9e3dc307ef898", - "reference": "6376bf39396292e9920b43f917d9e3dc307ef898", + "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/be60abc6b39cbeca57a0b25f8e1a3d38e18307c0", + "reference": "be60abc6b39cbeca57a0b25f8e1a3d38e18307c0", "shasum": "", "mirrors": [ { @@ -956,7 +956,7 @@ "ext-json": "*", "topthink/framework": "^6.0" }, - "time": "2020-01-16T03:30:15+00:00", + "time": "2020-02-28T01:51:28+00:00", "type": "library", "extra": { "think": { diff --git a/vendor/services.php b/vendor/services.php index e1316ab99..16607bb53 100644 --- a/vendor/services.php +++ b/vendor/services.php @@ -1,5 +1,5 @@ 'think\\app\\Service', diff --git a/vendor/zoujingli/think-library/src/Controller.php b/vendor/zoujingli/think-library/src/Controller.php index 3e8a8758f..16efbb015 100644 --- a/vendor/zoujingli/think-library/src/Controller.php +++ b/vendor/zoujingli/think-library/src/Controller.php @@ -197,14 +197,15 @@ abstract class Controller extends \stdClass * @param boolean $display 是否渲染模板 * @param boolean $total 集合分页记录数 * @param integer $limit 集合每页记录数 + * @param string $template 模板文件名称 * @return array * @throws DataNotFoundException * @throws DbException * @throws ModelNotFoundException */ - protected function _page($dbQuery, $page = true, $display = true, $total = false, $limit = 0) + protected function _page($dbQuery, $page = true, $display = true, $total = false, $limit = 0, $template = '') { - return PageHelper::instance()->init($dbQuery, $page, $display, $total, $limit); + return PageHelper::instance()->init($dbQuery, $page, $display, $total, $limit, $template); } /** diff --git a/vendor/zoujingli/think-library/src/Helper.php b/vendor/zoujingli/think-library/src/Helper.php index 79d74e257..e37ebf64b 100644 --- a/vendor/zoujingli/think-library/src/Helper.php +++ b/vendor/zoujingli/think-library/src/Helper.php @@ -67,10 +67,11 @@ abstract class Helper /** * 实例对象反射 + * @param array $args * @return static */ - public static function instance(): Helper + public static function instance(...$args): Helper { - return Container::getInstance()->invokeClass(static::class); + return Container::getInstance()->invokeClass(static::class, $args); } } \ No newline at end of file diff --git a/vendor/zoujingli/think-library/src/Library.php b/vendor/zoujingli/think-library/src/Library.php index b3d1f568b..e855a094d 100644 --- a/vendor/zoujingli/think-library/src/Library.php +++ b/vendor/zoujingli/think-library/src/Library.php @@ -33,20 +33,20 @@ class Library extends Service */ public function register() { - // 读取中文语言 + // 加载中文语言 $this->app->lang->load(__DIR__ . '/lang/zh-cn.php', 'zh-cn'); $this->app->lang->load(__DIR__ . '/lang/en-us.php', 'en-us'); - // 判断访问模式 + // 判断访问模式,兼容 CLI 访问控制器 if ($this->app->request->isCli()) { if (empty($_SERVER['REQUEST_URI']) && isset($_SERVER['argv'][1])) { $this->app->request->setPathinfo($_SERVER['argv'][1]); } } else { - // 注册会话中间键 + // 注册会话初始化中间键 if ($this->app->request->request('not_init_session', 0) == 0) { $this->app->middleware->add(SessionInit::class); } - // 注册访问中间键 + // 注册访问处理中间键 $this->app->middleware->add(function (Request $request, \Closure $next) { $header = []; if (($origin = $request->header('origin', '*')) !== '*') { @@ -55,6 +55,11 @@ class Library extends Service $header['Access-Control-Allow-Headers'] = 'Authorization,Content-Type,If-Match,If-Modified-Since,If-None-Match,If-Unmodified-Since,X-Requested-With'; $header['Access-Control-Expose-Headers'] = 'User-Form-Token,User-Token,Token'; } + // 未配置数据库,跳过所有检查 + $host = $this->app->config->get('database.host', '[host]'); + if (empty($host) || $host === '[host]') { + return $next($request)->header($header); + } // 访问模式及访问权限检查 if ($request->isOptions()) { return response()->code(204)->header($header); @@ -68,8 +73,8 @@ class Library extends Service }, 'route'); } // 动态加入应用函数 - $syspath = "{$this->app->getAppPath()}*/sys.php"; - foreach (glob($syspath) as $file) includeFile($file); + $sysRule = "{$this->app->getAppPath()}*/sys.php"; + foreach (glob($sysRule) as $file) includeFile($file); } /** diff --git a/vendor/zoujingli/think-library/src/Service.php b/vendor/zoujingli/think-library/src/Service.php index 6520b49e6..921ebb5a0 100644 --- a/vendor/zoujingli/think-library/src/Service.php +++ b/vendor/zoujingli/think-library/src/Service.php @@ -52,10 +52,11 @@ abstract class Service /** * 静态实例对象 + * @param array $args * @return static */ - public static function instance(): Service + public static function instance(...$args): Service { - return Container::getInstance()->make(static::class); + return Container::getInstance()->make(static::class, $args); } } \ No newline at end of file diff --git a/vendor/zoujingli/think-library/src/helper/PageHelper.php b/vendor/zoujingli/think-library/src/helper/PageHelper.php index d72ebf7fc..5673ff80b 100644 --- a/vendor/zoujingli/think-library/src/helper/PageHelper.php +++ b/vendor/zoujingli/think-library/src/helper/PageHelper.php @@ -56,12 +56,13 @@ class PageHelper extends Helper * @param boolean $display 是否渲染模板 * @param boolean $total 集合分页记录数 * @param integer $limit 集合每页记录数 + * @param string $template 模板文件名称 * @return array|mixed * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ - public function init($dbQuery, $page = true, $display = true, $total = false, $limit = 0) + public function init($dbQuery, $page = true, $display = true, $total = false, $limit = 0, $template = '') { $this->page = $page; $this->total = $total; @@ -108,7 +109,7 @@ class PageHelper extends Helper $result = ['list' => $this->query->select()->toArray()]; } if (false !== $this->controller->callback('_page_filter', $result['list']) && $this->display) { - return $this->controller->fetch('', $result); + return $this->controller->fetch($template, $result); } else { return $result; } diff --git a/vendor/zoujingli/think-library/src/helper/QueryHelper.php b/vendor/zoujingli/think-library/src/helper/QueryHelper.php index 4b37e95bd..eafcf2ddd 100644 --- a/vendor/zoujingli/think-library/src/helper/QueryHelper.php +++ b/vendor/zoujingli/think-library/src/helper/QueryHelper.php @@ -215,13 +215,14 @@ class QueryHelper extends Helper * @param boolean $display 是否渲染模板 * @param boolean $total 集合分页记录数 * @param integer $limit 集合每页记录数 + * @param string $template 模板文件名称 * @return mixed * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ - public function page($page = true, $display = true, $total = false, $limit = 0) + public function page($page = true, $display = true, $total = false, $limit = 0, $template = '') { - return PageHelper::instance()->init($this->query, $page, $display, $total, $limit); + return PageHelper::instance()->init($this->query, $page, $display, $total, $limit, $template); } }