修改配置

This commit is contained in:
Anyon 2022-06-29 14:11:36 +08:00
parent f503a531da
commit 1f780e714c
3 changed files with 14 additions and 18 deletions

View File

@ -92,7 +92,7 @@
return d.html + '<br>执行结果:<span class="color-blue">' + (d.exec_desc || '<span class="color-desc">未获取到执行结果</span>') + '</span>'; return d.html + '<br>执行结果:<span class="color-blue">' + (d.exec_desc || '<span class="color-desc">未获取到执行结果</span>') + '</span>';
} }
}, },
{toolbar: '#toolbar', title: '操作面板', align: 'center', minWidth: 200, fixed: 'right'} {toolbar: '#toolbar', title: '操作面板', align: 'center', minWidth: 210, fixed: 'right'}
]] ]]
}); });
}); });

View File

@ -42,7 +42,7 @@ return [
// 显示错误的消息,仅产品模式有效 // 显示错误的消息,仅产品模式有效
'error_message' => '页面错误!请稍后再试~', 'error_message' => '页面错误!请稍后再试~',
// 异常模板路径配置,仅开发模式有效 // 异常模板路径配置,仅开发模式有效
'exception_tmpl' => app()->getAppPath() . 'admin/view/error.php', 'exception_tmpl' => app()->getRootPath() . 'app/admin/view/error.php',
// 异常状态模板配置,仅生产模式有效 // 异常状态模板配置,仅生产模式有效
'http_exception_template' => [ 'http_exception_template' => [
404 => app()->getRootPath() . 'public/static/theme/err/404.html', 404 => app()->getRootPath() . 'public/static/theme/err/404.html',

View File

@ -14,8 +14,6 @@
// | github 代码仓库https://github.com/zoujingli/ThinkAdmin // | github 代码仓库https://github.com/zoujingli/ThinkAdmin
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
use think\admin\service\SystemService;
return [ return [
// 模板引擎类型使用 Think // 模板引擎类型使用 Think
'type' => 'Think', 'type' => 'Think',
@ -41,6 +39,4 @@ return [
'strip_space' => true, 'strip_space' => true,
// 标签默认过滤输出方法 // 标签默认过滤输出方法
'default_filter' => 'htmlentities=###,ENT_QUOTES', 'default_filter' => 'htmlentities=###,ENT_QUOTES',
// 定义模板替换字符串
'tpl_replace_string' => SystemService::instance()->uris(),
]; ];