feat:【mall 商城】门店管理的迁移(antd 100%)

This commit is contained in:
YunaiV
2025-10-13 09:53:11 +08:00
parent 1a9037f6ab
commit 99c0945989
4 changed files with 82 additions and 44 deletions

View File

@@ -29,21 +29,18 @@ export namespace MallDeliveryPickUpStoreApi {
longitude: number;
/** 状态 */
status: number;
/** 绑定用户编号组数 */
verifyUserIds: number[];
/** 营业时间 用于fieldMappingTime */
rangeTime: any[];
/** 绑定用户编号组数 */
verifyUserIds?: number[];
verifyUsers?: any[];
}
/** 绑定自提店员请求 */
export interface BindStaffRequest {
export interface DeliveryPickUpBindReqVO {
id?: number;
/** 门店名称 */
name: string;
/** 门店编号 */
storeId: number;
/** 用户编号列表 */
userIds: number[];
verifyUserIds: number[];
}
}
@@ -89,8 +86,8 @@ export function deleteDeliveryPickUpStore(id: number) {
}
/** 绑定自提店员 */
export function bindStoreStaffId(
data: MallDeliveryPickUpStoreApi.BindStaffRequest,
export function bindDeliveryPickUpStore(
data: MallDeliveryPickUpStoreApi.DeliveryPickUpBindReqVO,
) {
return requestClient.post('/trade/delivery/pick-up-store/bind', data);
}