添加管理端和移动端的多个新功能模块,包括文件上传、在线地图、用户认证、系统设置等,优化代码结构,提升可维护性和用户体验。

This commit is contained in:
zyh
2025-04-10 02:25:25 +00:00
parent 01dea6efa1
commit b1a6b608c6
31 changed files with 1366 additions and 46 deletions

View File

@@ -0,0 +1,35 @@
.marker-label {
color: #333;
font-size: 12px;
background: #fff;
padding: 2px 6px;
border: 1px solid #ccc;
border-radius: 2px;
white-space: nowrap;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
display: flex;
align-items: center;
gap: 4px;
}
.amap-marker-label {
border: none !important;
background: none !important;
}
.status-dot {
display: inline-block;
width: 8px;
height: 8px;
border-radius: 50%;
margin-left: 4px;
}
.status-dot.online {
background-color: #4CAF50;
}
.status-dot.offline {
background-color: #FF5252;
}