mirror of
https://github.com/acepanel/panel.git
synced 2026-02-05 00:39:32 +08:00
66 lines
2.9 KiB
HTML
66 lines
2.9 KiB
HTML
<!--
|
|
////////////////////////////////////////////////////////////////////
|
|
// _ooOoo_ //
|
|
// o8888888o //
|
|
// 88" . "88 //
|
|
// (| ^_^ |) //
|
|
// O\ = /O //
|
|
// ____/`---'\____ //
|
|
// .' \\| |// `. //
|
|
// / \\||| : |||// \ //
|
|
// / _||||| -:- |||||- \ //
|
|
// | | \\\ - /// | | //
|
|
// | \_| ''\---/'' | | //
|
|
// \ .-\__ `-` ___/-. / //
|
|
// ___`. .' /--.--\ `. . ___ //
|
|
// ."" '< `.___\_<|>_/___.' >'"". //
|
|
// | | : `- \`.;`\ _ /`;.`/ - ` : | | //
|
|
// \ \ `-. \_ __\ /__ _/ .-` / / //
|
|
// ========`-.____`-.___\_____/___.-`____.-'======== //
|
|
// `=---=' //
|
|
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ //
|
|
// 佛祖保佑 永无Bug 永不宕机 //
|
|
// Name: 耗子Linux面板 Author: 耗子 Date: 2023-07-25 //
|
|
////////////////////////////////////////////////////////////////////
|
|
-->
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>加载中...</title>
|
|
<meta name="renderer" content="webkit">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link href="https://cdnjs.cdn.haozi.net/layui/2.8.11/css/layui.min.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<div id="Panel_app"></div>
|
|
<script src="https://cdnjs.cdn.haozi.net/layui/2.8.11/layui.min.js"></script>
|
|
<script src="https://cdnjs.cdn.haozi.net/ace/1.6.1/ace.js"></script>
|
|
<script src="https://cdnjs.cdn.haozi.net/echarts/5.4.2/echarts.min.js"></script>
|
|
<script src="https://registry.npmmirror.com/xterm/5.2.1/files/lib/xterm.js"></script>
|
|
<script src="https://registry.npmmirror.com/xterm-addon-fit/0.7.0/files/lib/xterm-addon-fit.js"></script>
|
|
<script src="https://cdnjs.cdn.haozi.net/crypto-js/4.1.1/crypto-js.min.js"></script>
|
|
<script>
|
|
layui.config({
|
|
base: 'panel/', // 静态资源所在路径
|
|
version: new Date().getTime()
|
|
}).use(['index', 'setter'], function () {
|
|
var admin = layui.admin
|
|
var setter = layui.setter
|
|
admin.req({
|
|
url: '/api/panel/info/name',
|
|
type: 'get',
|
|
success: function (res) {
|
|
if (res.code === 0) {
|
|
setter.name = res.data.name
|
|
document.title = setter.name
|
|
}
|
|
}
|
|
})
|
|
})
|
|
</script>
|
|
</body>
|
|
</html>
|