feat(order): 添加配送员位置追踪功能

- 在 shopStoreRider 模型中新增 longitude 和 latitude 字段
- 在首页添加送水订单入口并引入 Agenda 图标
- 在送水订单页面实现配送员当前位置获取和更新逻辑
- 添加位置权限检查和经纬度数据同步到后台
- 实现按用户ID和门店ID精确匹配配送员记录
- 添加兜底机制按门店筛选后匹配配送员
- 送达操作时自动记录配送员当前位置信息
This commit is contained in:
2026-02-25 13:40:45 +08:00
parent 929f173b95
commit 5840bea66b
3 changed files with 49 additions and 3 deletions

View File

@@ -38,6 +38,10 @@ export interface ShopStoreRider {
otherGoodsCommissionValue?: string;
// 用户ID
userId?: number;
// 经度(配送员当前位置)
longitude?: string;
// 纬度(配送员当前位置)
latitude?: string;
// 备注
comments?: string;
// 排序号