From da61b6d40759ee603ad2a1a1373f9409547b1891 Mon Sep 17 00:00:00 2001 From: Anyon Date: Mon, 23 Nov 2020 10:34:28 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=85=8D=E7=BD=AE=E6=96=87?= =?UTF-8?q?=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/app.php | 8 ++++---- config/cache.php | 4 ++-- config/cookie.php | 2 +- config/log.php | 10 +++++----- config/route.php | 2 +- config/session.php | 2 +- config/view.php | 4 ++-- public/.htaccess | 2 +- vendor/composer/autoload_classmap.php | 3 +++ vendor/composer/autoload_static.php | 3 +++ vendor/services.php | 2 +- 11 files changed, 24 insertions(+), 18 deletions(-) diff --git a/config/app.php b/config/app.php index eec5f517a..73aca74cd 100644 --- a/config/app.php +++ b/config/app.php @@ -18,7 +18,7 @@ return [ 'app_namespace' => '', // 是否启用路由 'with_route' => true, - // 开启应用快速访问 + // 应用快速访问 'app_express' => true, // 默认应用 'default_app' => 'index', @@ -30,8 +30,8 @@ return [ 'domain_bind' => [], // 禁止URL访问的应用列表(自动多应用模式有效) 'deny_app_list' => [], - // 异常页面的模板文件 - 'exception_tmpl' => app()->getBasePath() . 'admin/view/error.tpl', - // 错误显示信息,非调试模式有效 + // 非调试模式时显示错误的消息 'error_message' => '页面错误!请稍后再试~', + // 调试模式异常页面的模板文件 + 'exception_tmpl' => app()->getBasePath() . 'admin/view/error.tpl', ]; \ No newline at end of file diff --git a/config/cache.php b/config/cache.php index 6c7fb0b16..01d2e0f56 100644 --- a/config/cache.php +++ b/config/cache.php @@ -16,7 +16,7 @@ return [ // 默认缓存驱动 'default' => 'file', - // 缓存连接方式配置 + // 缓存连接配置 'stores' => [ 'file' => [ // 驱动方式 @@ -33,4 +33,4 @@ return [ 'serialize' => [], ], ], -]; +]; \ No newline at end of file diff --git a/config/cookie.php b/config/cookie.php index 2f8ad3c08..a3900d438 100644 --- a/config/cookie.php +++ b/config/cookie.php @@ -28,4 +28,4 @@ return [ 'setcookie' => true, // samesite 设置,支持 'strict' 'lax' 'samesite' => '', -]; +]; \ No newline at end of file diff --git a/config/log.php b/config/log.php index 67063fb1b..d5e9f4a01 100644 --- a/config/log.php +++ b/config/log.php @@ -14,11 +14,11 @@ // +---------------------------------------------------------------------- return [ - // 默认日志记录通道 + // 默认日志通道 'default' => 'file', // 日志记录级别 'level' => [], - // 日志类型记录的通道 ['error'=>'email',...] + // 日志类型记录的通道 'type_channel' => [], // 关闭全局日志写入 'close' => false, @@ -34,11 +34,11 @@ return [ // 单文件日志写入 'single' => true, // 指定日志类型 - 'level' => ['notice', 'error', 'sql'], + 'level' => ['info', 'notice', 'error', 'sql'], // 独立日志级别 'apart_level' => true, // 每个文件大小 ( 10兆 ) - 'file_size' => 1024 * 1024 * 10, + 'file_size' => 10485760, // 日志日期格式 'time_format' => 'Y-m-d H:i:s', // 最大日志文件数量 @@ -55,4 +55,4 @@ return [ 'realtime_write' => false, ], ], -]; +]; \ No newline at end of file diff --git a/config/route.php b/config/route.php index 3a15286cd..594abdc56 100644 --- a/config/route.php +++ b/config/route.php @@ -52,4 +52,4 @@ return [ 'default_jsonp_handler' => 'jsonpReturn', // 默认JSONP处理方法 'var_jsonp_handler' => 'callback', -]; +]; \ No newline at end of file diff --git a/config/session.php b/config/session.php index 0aba17f7c..06850fea9 100644 --- a/config/session.php +++ b/config/session.php @@ -22,6 +22,6 @@ return [ 'store' => null, // 过期时间 'expire' => 1800, - // 前缀 + // 文件前缀 'prefix' => '', ]; \ No newline at end of file diff --git a/config/view.php b/config/view.php index 8ad843dca..988bb5856 100644 --- a/config/view.php +++ b/config/view.php @@ -27,7 +27,7 @@ return [ // 去除HTML空格换行 'strip_space' => true, // 模板缓存配置 - 'tpl_cache' => false, + 'tpl_cache' => !app()->isDebug(), // 模板引擎普通标签开始标记 'tpl_begin' => '{', // 模板引擎普通标签结束标记 @@ -42,4 +42,4 @@ return [ '__ROOT__' => rtrim(dirname(request()->basefile()), '\\/'), '__FULL__' => rtrim(dirname(request()->basefile(true)), '\\/'), ], -]; +]; \ No newline at end of file diff --git a/public/.htaccess b/public/.htaccess index cbc786893..f1adcc2fa 100644 --- a/public/.htaccess +++ b/public/.htaccess @@ -5,4 +5,4 @@ RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L] - + \ No newline at end of file diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php index 6b272396a..9c34933cd 100644 --- a/vendor/composer/autoload_classmap.php +++ b/vendor/composer/autoload_classmap.php @@ -211,6 +211,9 @@ return array( 'app\\data\\controller\\ShopOrderService' => $baseDir . '/app/data/controller/ShopOrderService.php', 'app\\data\\controller\\ShopTruckCompany' => $baseDir . '/app/data/controller/ShopTruckCompany.php', 'app\\data\\controller\\ShopTruckTemplate' => $baseDir . '/app/data/controller/ShopTruckTemplate.php', + 'app\\data\\controller\\StoreItem' => $baseDir . '/app/data/controller/StoreItem.php', + 'app\\data\\controller\\StoreUsed' => $baseDir . '/app/data/controller/StoreUsed.php', + 'app\\data\\controller\\StoreUser' => $baseDir . '/app/data/controller/StoreUser.php', 'app\\data\\controller\\api\\Auth' => $baseDir . '/app/data/controller/api/Auth.php', 'app\\data\\controller\\api\\Data' => $baseDir . '/app/data/controller/api/Data.php', 'app\\data\\controller\\api\\Goods' => $baseDir . '/app/data/controller/api/Goods.php', diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index b088149bd..28d30735f 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -339,6 +339,9 @@ class ComposerStaticInit4f89fd0e0503ccf740f2fa5757825d7b 'app\\data\\controller\\ShopOrderService' => __DIR__ . '/../..' . '/app/data/controller/ShopOrderService.php', 'app\\data\\controller\\ShopTruckCompany' => __DIR__ . '/../..' . '/app/data/controller/ShopTruckCompany.php', 'app\\data\\controller\\ShopTruckTemplate' => __DIR__ . '/../..' . '/app/data/controller/ShopTruckTemplate.php', + 'app\\data\\controller\\StoreItem' => __DIR__ . '/../..' . '/app/data/controller/StoreItem.php', + 'app\\data\\controller\\StoreUsed' => __DIR__ . '/../..' . '/app/data/controller/StoreUsed.php', + 'app\\data\\controller\\StoreUser' => __DIR__ . '/../..' . '/app/data/controller/StoreUser.php', 'app\\data\\controller\\api\\Auth' => __DIR__ . '/../..' . '/app/data/controller/api/Auth.php', 'app\\data\\controller\\api\\Data' => __DIR__ . '/../..' . '/app/data/controller/api/Data.php', 'app\\data\\controller\\api\\Goods' => __DIR__ . '/../..' . '/app/data/controller/api/Goods.php', diff --git a/vendor/services.php b/vendor/services.php index 8a0e531f8..bb1f0d613 100644 --- a/vendor/services.php +++ b/vendor/services.php @@ -1,5 +1,5 @@ 'think\\admin\\Library',