diff --git a/.env.example b/.env.example deleted file mode 100644 index 21f0116f2..000000000 --- a/.env.example +++ /dev/null @@ -1,13 +0,0 @@ -[mysql] -hostname=127.0.0.1 -database=admin_dv -username=root -password=root -hostport=3306 -prefix= - -[redis] -host=127.0.0.1 -port=6379 -password= -select=0 diff --git a/app/index/controller/Index.php b/app/index/controller/Index.php index dea445d17..2f5fbf79c 100644 --- a/app/index/controller/Index.php +++ b/app/index/controller/Index.php @@ -3,7 +3,7 @@ // +---------------------------------------------------------------------- // | Static Plugin for ThinkAdmin // +---------------------------------------------------------------------- -// | 版权所有 2014~2023 ThinkAdmin [ thinkadmin.top ] +// | 版权所有 2014~2024 ThinkAdmin [ thinkadmin.top ] // +---------------------------------------------------------------------- // | 官方网站: https://thinkadmin.top // +---------------------------------------------------------------------- diff --git a/composer.json b/composer.json index 661f2d1b4..b3a6ca56e 100644 --- a/composer.json +++ b/composer.json @@ -34,10 +34,5 @@ "allow-plugins": { "zoujingli/think-install": true } - }, - "scripts": { - "post-autoload-dump": [ - "@php -r \"file_exists('.env.example') && !file_exists('.env') && copy('.env.example', '.env');\"" - ] } } diff --git a/config/app.php b/config/app.php index 680e6466f..275eb3b59 100644 --- a/config/app.php +++ b/config/app.php @@ -39,6 +39,8 @@ return [ 'cors_methods' => 'GET,PUT,POST,PATCH,DELETE', // CORS 跨域头部字段 'cors_headers' => 'Api-Type,Api-Name,Api-Uuid,Jwt-Token,Api-Token,User-Form-Token,User-Token,Token', + // X-Frame-Options 配置 + 'cors_frame' => 'sameorigin', // RBAC 登录页面(填写登录地址) 'rbac_login' => '', // RBAC 忽略应用(填写应用名称) diff --git a/config/database.php b/config/database.php index 8ca84051f..c9b936942 100644 --- a/config/database.php +++ b/config/database.php @@ -33,15 +33,15 @@ return [ // 数据库名 'database' => env('mysql.database', 'thinkadmin'), // 用户名 - 'username' => env('mysql.username', 'thinkadmin'), + 'username' => env('mysql.username', 'root'), // 密码 - 'password' => env('mysql.password', 'thinkadmin'), + 'password' => env('mysql.password', ''), // 端口 'hostport' => env('mysql.hostport', '3306'), // 数据库连接参数 'params' => [], // 数据库编码默认采用 utf8 - 'charset' => 'utf8mb4', + 'charset' => env('mysql.charset', 'utf8mb4'), // 数据库表前缀 'prefix' => env('mysql.prefix', ''), // 数据库部署方式:0 集中式(单一服务器),1 分布式(主从服务器) diff --git a/public/router.php b/public/router.php index 33e5b7517..bdf0b0f29 100644 --- a/public/router.php +++ b/public/router.php @@ -3,7 +3,7 @@ // +---------------------------------------------------------------------- // | Static Plugin for ThinkAdmin // +---------------------------------------------------------------------- -// | 版权所有 2014~2023 ThinkAdmin [ thinkadmin.top ] +// | 版权所有 2014~2024 ThinkAdmin [ thinkadmin.top ] // +---------------------------------------------------------------------- // | 官方网站: https://thinkadmin.top // +---------------------------------------------------------------------- diff --git a/public/static/extra/script.js b/public/static/extra/script.js index caebe9fd3..a2a8ada05 100644 --- a/public/static/extra/script.js +++ b/public/static/extra/script.js @@ -3,7 +3,7 @@ // +---------------------------------------------------------------------- // | 官方网站: https://thinkadmin.top // +---------------------------------------------------------------------- -// | 版权所有 2014~2023 Anyon +// | 版权所有 2014~2024 ThinkAdmin [ thinkadmin.top ] // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // | 免责声明 ( https://thinkadmin.top/disclaimer ) @@ -43,11 +43,6 @@ $(function () { // 显示表格图片 window.showTableImage = function (image, circle, size, title) { - if (typeof image !== 'string' || image.length < 5) { - return '-' + (title ? laytpl('{{d.title}}').render({title: title}) : ''); - } - return laytpl('
').render({ - size: size || 'ss', class: circle ? 'shadow-inset' : 'headimg-no', image: image, style: 'background-image:url(' + image + ');margin-right:0' - }) + (title ? laytpl('{{d.title}}').render({title: title}) : ''); + return $.layTable.showImage(image, circle, size, title); }; }); \ No newline at end of file diff --git a/public/static/extra/style.css b/public/static/extra/style.css index 9f27daec3..8aa344156 100644 --- a/public/static/extra/style.css +++ b/public/static/extra/style.css @@ -3,7 +3,7 @@ /* +---------------------------------------------------------------------- /* | 官方网站: https://thinkadmin.top /* +---------------------------------------------------------------------- -/* | 版权所有 2014~2023 Anyon +/* | 版权所有 2014~2024 ThinkAdmin [ thinkadmin.top ] /* +---------------------------------------------------------------------- /* | 开源协议 ( https://mit-license.org ) /* | 免责声明 ( https://thinkadmin.top/disclaimer )