- 修复Redis认证 (配置密码) - 启动Python管理后台 (端口9531, 15个功能开关) - 统一版本号 0.2.7 - 更新docker-compose.yml (镜像版本/Redis URL/Admin服务)
16 lines
435 B
JavaScript
16 lines
435 B
JavaScript
|
|
// Fetch app version
|
|
fetch('/api/version').then(r => r.json()).then(d => {
|
|
var el = document.getElementById('appVersion');
|
|
if (el && d.version) el.textContent = 'v' + d.version;
|
|
}).catch(function(){});
|
|
|
|
(function(){
|
|
if(!TOKEN){
|
|
document.getElementById('app').innerHTML = '<div class="login-wrap"><div id="content"></div></div>';
|
|
page_login(document.getElementById('content'));
|
|
} else {
|
|
nav('dashboard');
|
|
}
|
|
})();
|