fix:修正管理人员电话号码

This commit is contained in:
yarnom 2025-11-20 17:56:21 +08:00
parent ae929bcb0d
commit 17ed76eb84
2 changed files with 1 additions and 3 deletions

View File

@ -14,7 +14,7 @@
</dl>
<dl class="info-people">
<dt>网格责任人</dt><dd class="contact"><span class="name">刘江平</span><span class="phone">15586362528</span></dd>
<dt>网格管理员</dt><dd class="contact"><span class="name">余泽蛟</span><span class="phone">19371312580</span></dd>
<dt>网格管理员</dt><dd class="contact"><span class="name">余泽蛟</span><span class="phone">19371312586</span></dd>
<dt>网格专管员</dt><dd class="contact"><span class="name">邴香举</span><span class="phone">13997659222</span></dd>
<dt>网格协管员</dt><dd class="contact"><span class="name">韩超</span><span class="phone">15172881786</span></dd>
<dt>防控区巡查员</dt><dd class="contact"><span class="name">吴大华</span><span class="phone">18572355263</span></dd>
@ -125,7 +125,6 @@
<div class="spinner"></div>
</div>
<!-- KML 详情弹窗(白色主题,非全宽) -->
<div *ngIf="isKmlDialogOpen" class="fixed inset-0 flex items-center justify-center bg-black bg-opacity-50" style="z-index:2000;">
<div class="max-w-2xl bg-white text-gray-800 rounded-lg shadow-2xl border border-gray-200 overflow-hidden" style="max-height:80vh;">
<div class="px-4 py-2 flex items-center justify-between border-b border-gray-200">

View File

@ -847,7 +847,6 @@ export class BigscreenAppComponent implements OnInit, AfterViewInit, OnDestroy {
const sid = this.makeStationIdFromHex(this.hexId || this.DEFAULT_STATION_HEX);
if (!sid) return;
const days = 30;
// 控制台打印时间窗口
const now = new Date();
const since = new Date(now.getTime() - days * 24 * 3600 * 1000);
try { console.log(`[HeavyPerf] days=${days} window: ${since.toISOString()} ~ ${now.toISOString()}`); } catch {}