feat(shop): 添加配送员和门店管理功能

- 在ShopDealerUser模型中新增dealerName和community字段
- 添加realName和mobile搜索参数支持
- 将经销商类型重命名为分销商,并添加配送员类型
- 新增配送员管理页面(src/views/shop/shopDealerUserDelivery)
- 新增门店管理页面(src/views/shop/shopDealerUserShop)
- 为不同类型的用户创建独立的搜索组件
- 实现配送员编辑弹窗功能
- 更新表格显示逻辑以支持不同类型用户过滤
This commit is contained in:
2026-01-29 20:43:01 +08:00
parent ec8cc3a8de
commit fad67cdbad
10 changed files with 1790 additions and 14 deletions

View File

@@ -12,6 +12,10 @@ export interface ShopDealerUser {
userId?: number;
// 头像
avatar?: string;
// 店铺名称
dealerName?: string;
// 小区名称
community?: string;
// 姓名
realName?: string;
// 手机号
@@ -60,5 +64,7 @@ export interface ShopDealerUser {
*/
export interface ShopDealerUserParam extends PageParam {
id?: number;
realName?: string;
mobile?: string;
keywords?: string;
}