diff --git a/app/admin/view/queue/index.html b/app/admin/view/queue/index.html
index ee06c7c1b..cf1b5d516 100644
--- a/app/admin/view/queue/index.html
+++ b/app/admin/view/queue/index.html
@@ -92,7 +92,7 @@
return d.html + '
执行结果:' + (d.exec_desc || '未获取到执行结果') + '';
}
},
- {toolbar: '#toolbar', title: '操作面板', align: 'center', minWidth: 200, fixed: 'right'}
+ {toolbar: '#toolbar', title: '操作面板', align: 'center', minWidth: 210, fixed: 'right'}
]]
});
});
diff --git a/config/app.php b/config/app.php
index 3919f5bcc..1f52662b0 100644
--- a/config/app.php
+++ b/config/app.php
@@ -42,7 +42,7 @@ return [
// 显示错误的消息,仅产品模式有效
'error_message' => '页面错误!请稍后再试~',
// 异常模板路径配置,仅开发模式有效
- 'exception_tmpl' => app()->getAppPath() . 'admin/view/error.php',
+ 'exception_tmpl' => app()->getRootPath() . 'app/admin/view/error.php',
// 异常状态模板配置,仅生产模式有效
'http_exception_template' => [
404 => app()->getRootPath() . 'public/static/theme/err/404.html',
diff --git a/config/view.php b/config/view.php
index 92b4995bd..0dcbabd39 100644
--- a/config/view.php
+++ b/config/view.php
@@ -14,33 +14,29 @@
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
// +----------------------------------------------------------------------
-use think\admin\service\SystemService;
-
return [
// 模板引擎类型使用 Think
- 'type' => 'Think',
+ 'type' => 'Think',
// 默认模板渲染规则 1.解析为小写+下划线 2.全部转换小写 3.保持操作方法
- 'auto_rule' => 1,
+ 'auto_rule' => 1,
// 模板目录名
- 'view_dir_name' => 'view',
+ 'view_dir_name' => 'view',
// 模板文件后缀
- 'view_suffix' => 'html',
+ 'view_suffix' => 'html',
// 模板文件名分隔符
- 'view_depr' => DIRECTORY_SEPARATOR,
+ 'view_depr' => DIRECTORY_SEPARATOR,
// 模板缓存配置
- 'tpl_cache' => !app()->isDebug(),
+ 'tpl_cache' => !app()->isDebug(),
// 模板引擎标签开始标记
- 'tpl_begin' => '{',
+ 'tpl_begin' => '{',
// 模板引擎标签结束标记
- 'tpl_end' => '}',
+ 'tpl_end' => '}',
// 标签库标签开始标记
- 'taglib_begin' => '{',
+ 'taglib_begin' => '{',
// 标签库标签结束标记
- 'taglib_end' => '}',
+ 'taglib_end' => '}',
// 去除HTML空格换行
- 'strip_space' => true,
+ 'strip_space' => true,
// 标签默认过滤输出方法
- 'default_filter' => 'htmlentities=###,ENT_QUOTES',
- // 定义模板替换字符串
- 'tpl_replace_string' => SystemService::instance()->uris(),
+ 'default_filter' => 'htmlentities=###,ENT_QUOTES',
];
\ No newline at end of file