feat: HSAP platform v2 — modular navigation, quality review, audit log, world model simulation

Major changes:
- New frontend (platform/web/): Vite + React 18 + TypeScript + Tailwind
- 4-module navigation: 数据送标 / 模型管理 / 车队管理 / 系统管理
- Data catalog with charts (DMS/ADAS/Lane 3-tab view)
- Quality review workflow (标注质检): Good/Fine/Bad scoring with auto-advance
- Audit enhancements: batch operations, rejection categories, Feishu notifications
- Operation audit log (操作日志)
- World model simulation studio (仿真工坊)
- Dataset version management with snapshots and diff
- ADAS 7-class dataset integration (138K images organized + compressed)
- User management with Feishu integration and pagination
- CRUD/search/filter on all pages, card layout redesign
- PIL-optimized image overlay rendering
- Auto-snapshot on build, in_review workflow stage
- Removed embedded algorithm code (now in workspace)
This commit is contained in:
2026-06-03 11:40:21 +08:00
parent 7c43b44c57
commit e72bc061c5
5487 changed files with 979207 additions and 6197 deletions

View File

@@ -29,8 +29,11 @@ link_dir() {
rm -f "$link"
fi
mkdir -p "$(dirname "$link")"
ln -sfn "$target" "$link"
echo " $link -> $target"
local rel link_parent
link_parent="$(dirname "$link")"
rel="$(python3 -c "import os.path; print(os.path.relpath('''$target''', '''$link_parent'''))")"
ln -sfn "$rel" "$link"
echo " $link -> $rel"
}
mkdir -p "$WS/Lane" "$ROOT/datasets" "$ROOT/algorithms/dms_yolo" "$ROOT/algorithms/lane_ufld"
@@ -39,8 +42,22 @@ mkdir -p "$WS/Lane" "$ROOT/datasets" "$ROOT/algorithms/dms_yolo" "$ROOT/algorith
[[ -d "$WS/lane" ]] && ln -sfn "$WS/lane" "$WS/Lane/dataset" 2>/dev/null || true
[[ -d "$WS/LaneDection/Code" ]] && ln -sfn "$WS/LaneDection/Code" "$WS/Lane/code" 2>/dev/null || true
echo ">>> datasets"
link_dir "$WS/DMS/DATASET" "$ROOT/datasets/dms"
echo ">>> datasets/dms保留仓库内 registry/scripts仅软链 packs"
DMS_ROOT="$ROOT/datasets/dms"
if [[ -L "$DMS_ROOT" ]]; then
rm -f "$DMS_ROOT"
fi
if [[ ! -d "$DMS_ROOT" ]] && [[ -d "${DMS_ROOT}.embedded.bak" ]]; then
mv "${DMS_ROOT}.embedded.bak" "$DMS_ROOT"
fi
mkdir -p "$DMS_ROOT/packs"
if [[ -d "$WS/DMS/DATASET/packs" ]]; then
for pack in "$WS/DMS/DATASET/packs"/*; do
[[ -e "$pack" ]] || continue
name="$(basename "$pack")"
link_dir "$pack" "$DMS_ROOT/packs/$name"
done
fi
link_dir "$WS/lane" "$ROOT/datasets/lane"
echo ">>> algorithms"