mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
修改环境变更
This commit is contained in:
parent
27e58472cc
commit
af4a1748c4
@ -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'
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -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'}">
|
||||
|
Loading…
x
Reference in New Issue
Block a user