feat: status-server主题增加agent账单信息展示 (#424)

1. 首页通过在后台配置PublicNote字段,实现agent账单信息展示
2. 优化顶部导航,增加当前位置标识
3. 优化network页移动端样式
4. 优化后台server页展示,隐藏掉一些不重要的信息
5. 一些其他小优化
使用说明:https://github.com/naiba/nezha/pull/424#issuecomment-2386837658
This commit is contained in:
nap0o
2024-10-01 22:05:53 -04:00
committed by GitHub
parent 7940e010e0
commit 60ada33ee9
14 changed files with 517 additions and 34 deletions

View File

@@ -155,6 +155,11 @@ const mixinsVue = {
checkIsMobile() { // 检测设备类型,页面宽度小于768px认为是移动设备
return window.innerWidth <= 768;
},
isMenuActive(page){
if(page == this.$root.page) {
return this.isMobile ? 'm-active' : 'pc-active';
}
},
setBenchmarkHeight() {
let vh = window.innerHeight * 0.01;
document.documentElement.style.setProperty('--vh', `${vh}px`);