feat(settlement): 门店未出账手动提现与总部审核(OPT-010)

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-08-03 15:32:01 +08:00
parent 666bcb8633
commit f3353bbce5
29 changed files with 1733 additions and 15 deletions
+2
View File
@@ -85,6 +85,8 @@ export type DashboardStats = {
pendingBills?: number;
pendingPartnerDraftBills?: number;
openTickets?: number;
pendingStoreWithdrawals?: number;
overdueStoreWithdrawals?: number;
ordersByStatus: Array<{ status: string; count: number }>;
};
+1
View File
@@ -29,6 +29,7 @@ export type StoreCreateForm = {
settlementRate?: number;
visibilityWhitelistEnabled?: boolean;
visibilityPhones?: string[];
withdrawWhitelistEnabled?: boolean;
};
const PHONE_RE = /^1\d{10}$/;