perf: 优化子窗口

This commit is contained in:
kuaifan
2024-03-05 19:29:27 +08:00
committed by Pang
parent c4430e1a6c
commit c96bad3cdf
18 changed files with 205 additions and 202 deletions

View File

@@ -406,23 +406,6 @@ class IndexController extends InvokeController
abort(404);
}
/**
* 保存配置
* @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View|string
*/
public function storage__synch()
{
$key = Request::input('key');
$value = Request::input('value');
if ($key) {
$value = [$key => $value];
}
if (!is_array($value)) {
$value = Base::json2array($value);
}
return view('storage', ['value' => Base::array2json($value)]);
}
/**
* 提取所有中文
* @return array|string