* ServerStatus主题优化 1.更新世界地图基础geo文件,中国部分包含南海10段线,藏南部分划线更准 geo在大佬仓库https://github.com/Surbowl/world-geo-json-zh的基础上加工 2.世界地图可以在后台设置自定义代码切换是否包含南极洲,中国港澳台是否单独统计vps数 ```<script> localStorage.setItem('countryMapGeoFile', 'nezha.world.geo.json'); //默认 // localStorage.setItem('countryMapGeoFile', 'nezha.world.plus.geo.json'); //单独绘制香港,澳门,台湾 // localStorage.setItem('countryMapGeoFile', 'nezha.world.antarctica.geo.json'); //有南极洲 // localStorage.setItem('countryMapGeoFile', 'nezha.world.plus.antarctica.geo.json'); //有南极洲,单独绘制香港,澳门,台湾 </script> ``` 3. mixin.js文件删除冗余代码 4. 首页agent下拉详情,控制网络折线图tooltip数字最多显示小数点后两位 * 修正geo文件路径 * 修复世界地图中国港澳台单独绘制时,vps数量计算逻辑 * 删除header中的无用的地图基础数据引用 * 增加温度控制cpu型号识别
		
			
				
	
	
		
			23 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
		
			Vendored
		
	
	
	
{{define "theme-server-status/content-footer"}}
 | 
						|
<footer class="container" style="padding-bottom: 2rem;">
 | 
						|
    <p style="text-align: center; font-size: 10px;">
 | 
						|
        {{ .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">
 | 
						|
    <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="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>
 | 
						|
{{end}} |