title = '图标选择器'; $this->field = $this->app->request->get('field', 'icon'); $this->fetch(realpath(__DIR__ . '/../../view/api/icon.html')); } /** * 前端脚本变量 * @return \think\Response * @throws \think\admin\Exception */ public function script(): Response { $token = $this->request->get('uptoken', ''); $domain = boolval(AdminService::withUploadUnid($token)); return response(join("\r\n", [ sprintf("window.taDebug = %s;", $this->app->isDebug() ? 'true' : 'false'), sprintf("window.taAdmin = '%s';", sysuri('admin/index/index', [], false, $domain)), sprintf("window.taEditor = '%s';", sysconf('base.editor|raw') ?: 'ckeditor4'), ]))->contentType('application/javascript'); } /** * 优化数据库 * @login true */ public function optimize() { if (AdminService::isSuper()) { sysoplog('系统运维管理', '创建数据库优化任务'); $this->_queue('优化数据库所有数据表', 'xadmin:database optimize'); } else { $this->error('请使用超管账号操作!'); } } }