修改环境变更

This commit is contained in:
Anyon 2022-07-11 13:51:29 +08:00
parent 27e58472cc
commit af4a1748c4
2 changed files with 23 additions and 6 deletions

View File

@ -35,7 +35,28 @@ class Plugs extends Controller
{
$this->title = '图标选择器';
$this->field = $this->app->request->get('field', 'icon');
$this->fetch(realpath(__DIR__ . '/../../view/api/icon.html'));
$this->fetch('api/icon');
}
/**
* 前端脚本变量
* @return \think\Response
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function script(): \think\Response
{
$debug = $this->app->isDebug() ? 'true' : 'false';
$editor = sysconf("base.editor") ?: "ckeditor4";
$taroot = sysuri("admin/index/index", [], false);
return response(join("\n", [
"window.taDebug = {$debug};",
"window.taEditor = '{$editor}';",
"window.tapiRoot = '{$taroot}';",
]))->header([
'Content-Type' => 'application/x-javascript'
]);
}
/**

View File

@ -16,11 +16,7 @@
<link rel="stylesheet" href="__ROOT__/static/extra/style.css?at={:date('md')}">
{block name="style"}{/block}
<script src="__ROOT__/static/plugs/jquery/pace.min.js"></script>
<script>
window.taDebug = '{:intval($app->isDebug())}' > 0;
window.taEditor = '{:sysconf("base.editor")?:"ckeditor4"}';
window.tapiRoot = '{:sysuri("admin/index/index",[],false)}';
</script>
<script src="{:url('admin/api.plugs/script',[],false,false)}"></script>
</head>
<body class="layui-layout-body layui-layout-theme-{$theme|default='default'}">