refactor(project): remove store mock fallback flows and unify real-data states

This commit is contained in:
2026-02-20 09:56:35 +08:00
parent 11cd789f38
commit 22d1a44683
39 changed files with 887 additions and 610 deletions

View File

@@ -71,10 +71,11 @@ export interface PickupPreviewDayDto {
/** 门店自提设置聚合 */
export interface StorePickupSettingsDto {
basicSettings: PickupBasicSettingsDto;
basicSettings: null | PickupBasicSettingsDto;
bigSlots: PickupSlotDto[];
fineRule: PickupFineRuleDto;
mode: PickupMode;
fineRule: null | PickupFineRuleDto;
isConfigured: boolean;
mode: null | PickupMode;
previewDays: PickupPreviewDayDto[];
storeId: string;
}