修改插件

This commit is contained in:
Anyon 2022-07-11 14:02:53 +08:00
parent af4a1748c4
commit 9422674a2b
2 changed files with 3 additions and 3 deletions

View File

@ -49,11 +49,11 @@ class Plugs extends Controller
{
$debug = $this->app->isDebug() ? 'true' : 'false';
$editor = sysconf("base.editor") ?: "ckeditor4";
$taroot = sysuri("admin/index/index", [], false);
$taRoot = sysuri("admin/index/index", [], false);
return response(join("\n", [
"window.taDebug = {$debug};",
"window.taAdmin = '{$taRoot}';",
"window.taEditor = '{$editor}';",
"window.tapiRoot = '{$taroot}';",
]))->header([
'Content-Type' => 'application/x-javascript'
]);

View File

@ -40,7 +40,7 @@ if (typeof Array.prototype.forEach !== 'function') {
var srcs = document.scripts[document.scripts.length - 1].src.split('/');
window.appRoot = srcs.slice(0, -2).join('/') + '/';
window.baseRoot = srcs.slice(0, -1).join('/') + '/';
window.tapiRoot = window.tapiRoot || window.appRoot + "admin";
window.tapiRoot = window.taAdmin || window.appRoot + "admin";
/*! 挂载 layui & jquery 对象 */
layui.config({base: baseRoot + 'plugs/layui_exts/'});