更新代码

This commit is contained in:
2025-05-19 17:34:40 +08:00
parent 1587524031
commit 7bd072add9
32 changed files with 1465 additions and 139 deletions
+2 -2
View File
@@ -21,7 +21,7 @@ return [
// 是否强制使用路由
'url_route_must' => false,
// 合并路由规则
'route_rule_merge' => false,
'route_rule_merge' => true,
// 路由是否完全匹配
'route_complete_match' => false,
// 使用注解路由
@@ -68,7 +68,7 @@ return [
// 空控制器名
'empty_controller' => 'Error',
// 是否使用控制器后缀
'controller_suffix' => false,
'controller_suffix' => true,
// 访问控制器层名称
'controller_layer' => 'controller',
// 默认控制器名
+27
View File
@@ -0,0 +1,27 @@
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
return [
// 站点名称
'name' => '云泽科技',
// 联系电话
'phone' => '188-1152-3967',
// 联系邮箱
'email' => '357099073@qq.com',
// 微信二维码
'wechat_qrcode' => '/static/images/wechat_qrcode.jpg',
// 网站Logo
'logo' => '/static/images/logo.png',
// 网站Logo(深色)
'logo1' => '/static/images/logo1.png',
// 后台路由前缀
'admin_route' => '/admin/'
];