feat(ops): add HQ admin proxy order and mini-user store session fixes

Align HQ orders page with partner dual-SMS offline proxy flow; improve mini-user stores session and WeChat confirm-receive handling.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-07-31 09:18:19 +08:00
parent 1a0afb6d39
commit 2cd4e25682
21 changed files with 1438 additions and 143 deletions
+17
View File
@@ -111,3 +111,20 @@ export type PartnerProxyOrderCreateRequest = {
quantity: number;
promoCodeId?: string;
};
/** 总部代下单(对齐合伙人双短信流程;确认码发至 HQ 登录手机) */
export type HqProxyOrderCreateRequest = {
phone: string;
customerSmsCode: string;
operatorSmsCode: string;
deliveryMode: PartnerProxyDeliveryMode;
autoReceive?: boolean;
receiverName?: string;
province?: string;
city?: string;
district?: string;
addressDetail?: string;
productId: string;
quantity: number;
promoCodeId?: string;
};