feat: audit diff, mock SMS 999888, env photos, proxy pay lock, mini-user UX

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-08-03 20:47:28 +08:00
parent d90847bad0
commit e93e4b8f84
23 changed files with 524 additions and 135 deletions
+3
View File
@@ -141,3 +141,6 @@ export function loadAppConfig(env?: Record<string, string | undefined>): AppConf
wechatPayEnabled: resolveWechatPayEnabled(base, e),
};
}
/** Mock 短信环境固定验证码 */
export const MOCK_SMS_FIXED_CODE = '999888';
@@ -48,6 +48,11 @@ export interface StorePackageChangeRequestDto {
createdAt: string;
}
/** 套餐变更审核详情(含线上现行套餐,供对比) */
export interface StorePackageAuditDetailDto extends StorePackageChangeRequestDto {
livePackages: StorePackageViewDto[];
}
export interface StorePackageAuditAction {
action: 'APPROVE' | 'REJECT';
rejectReason?: string;
+2
View File
@@ -152,6 +152,8 @@ export type PartnerProxyOrderListItem = OrderDto & {
deliveryType?: string | null;
productSpec?: string | null;
imageResource?: { url?: string } | null;
/** 已锁定的支付方式(首次拉起支付后不可切换,须取消后重新下单) */
proxyPayMethod?: ProxyPayMethod | null;
};
export type PartnerProxyOrderListResponse = {