mirror of
https://github.com/nezhahq/nezha.git
synced 2025-01-23 05:08:13 -05:00
b701efd9b5
* feat & improve & fix 1. 增加WebAppManifest文件,实现把哪吒监控网页伪装成app放在移动端桌面 2. vps地图分布图增加数据异步加载loading效果 3. 修复echart图表纵坐标轴因数值过大显示不全bug * 刷新CDN缓存 * fix footer * 4.提升service页echarts图表相关体验 5.用设置基准1vh的方法解决footer页脚位置在移动端各种浏览器显示不一致的问题 6.修复section标签的使用位置 * 刷新CDN缓存
38 lines
1.8 KiB
HTML
Vendored
38 lines
1.8 KiB
HTML
Vendored
{{define "theme-server-status/footer"}}
|
|
</section>
|
|
<footer class="container-fluid">
|
|
<p>{{ .Conf.Site.Brand }} | Theme ServerStatus | Powered by <a target="_blank" href="https://github.com/naiba/nezha">{{tr "NezhaMonitoring"}}</a> {{.Version}}</p>
|
|
</footer>
|
|
<aside class="toolbox">
|
|
<template v-if="showTools">
|
|
<span v-if="page=='index' && countryMapChartData.length!=0" class="showMapChart">
|
|
<i @click="showMapChart" data-toggle="modal" data-target="#mapChartBox" class="bi bi-geo-alt"></i>
|
|
</span>
|
|
<span class="toggleView">
|
|
<i v-if="showGroup" @click="toggleShowGroup" class="show-nogroup bi bi-justify"></i>
|
|
<i v-else @click="toggleShowGroup" class="show-group bi bi-view-stacked"></i>
|
|
</span>
|
|
<span class="toggleSemiTransparent" @click="toggleSemiTransparent">
|
|
<i class="bi" :class="semiTransparent ? 'bi-droplet' : 'bi-droplet-half'"></i>
|
|
</span>
|
|
</template>
|
|
<span v-if="!showTools">
|
|
<i @click="toggleShowTools" class="bi bi-three-dots"></i>
|
|
</span>
|
|
<span class="setTheme">
|
|
<i v-if="theme === 'light'" @click="setTheme('dark')" class="setTheme-dark bi bi-moon-fill"></i>
|
|
<i v-else @click="setTheme('light')" class="setTheme-light bi bi-brightness-high-fill"></i>
|
|
</span>
|
|
<span v-if="showGoTop" class="showGoTop">
|
|
<i @click="goTop" class="goTop bi bi-arrow-up"></i>
|
|
</span>
|
|
</aside>
|
|
<template v-if="semiTransparent">
|
|
<link rel="stylesheet" href="/static/theme-server-status/css/light.plus.css?v20240807">
|
|
<link rel="stylesheet" href="/static/theme-server-status/css/dark.plus.css?v20240807">
|
|
</template>
|
|
</div>
|
|
{{if ts .CustomCode}}{{.CustomCode|safe}}{{end}}
|
|
</body>
|
|
</html>
|
|
{{end}} |