添加管理员逻辑

This commit is contained in:
2025-10-19 23:38:54 +08:00
parent 118ec38550
commit 5ee4e077fb
46 changed files with 5263 additions and 883 deletions

View File

@@ -58,6 +58,8 @@ export interface Marker {
width?: number;
height?: number;
zIndex?: number;
type?: string; // 标记点类型:'employee' | 'warehouse' | 'user' | 'order' 等
data?: any; // 附加数据
callout?: {
content: string;
color?: string;
@@ -79,6 +81,7 @@ export interface WarehouseInfo {
description?: string;
status?: 'open' | 'closed' | 'maintenance';
capacity: number; // 仓库容量(吨)
currentStock?: number; // 当前库存(吨)
longitude: number;
latitude: number;
}