feat(release): v3.4.13 experience optimizations across admin, mini-user, and H5 login

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-08-05 22:34:29 +08:00
parent 490c26a7e1
commit 1c4b986924
29 changed files with 617 additions and 23 deletions
@@ -33,11 +33,24 @@ export const SUPPORT_TICKET_STATUS_LABELS: Record<SupportTicketStatusDto, string
PASSED: '通过',
};
/** 技术支持工单优先级 */
export type SupportTicketPriorityDto = 'LOW' | 'NORMAL' | 'HIGH' | 'URGENT';
export const SUPPORT_TICKET_PRIORITIES = ['LOW', 'NORMAL', 'HIGH', 'URGENT'] as const;
export const SUPPORT_TICKET_PRIORITY_LABELS: Record<SupportTicketPriorityDto, string> = {
LOW: '低',
NORMAL: '普通',
HIGH: '高',
URGENT: '紧急',
};
export interface SupportTicketDto {
id: string;
ticketNo: string;
ticketType: SupportTicketTypeDto;
status: SupportTicketStatusDto;
priority: SupportTicketPriorityDto;
title: string;
content?: string | null;
rejectReason?: string | null;
@@ -59,6 +72,7 @@ export interface CreateSupportTicketRequest {
content?: string;
remark?: string;
attachmentUrls?: string[];
priority?: SupportTicketPriorityDto;
}
export interface UpdateSupportTicketRequest {
@@ -67,6 +81,7 @@ export interface UpdateSupportTicketRequest {
content?: string;
remark?: string;
attachmentUrls?: string[];
priority?: SupportTicketPriorityDto;
}
export interface RejectSupportTicketRequest {
+2
View File
@@ -48,6 +48,8 @@ export type ClientRuntimeConfig = {
banners: string[];
footerUrl: string | null;
};
/** 小程序最低兼容版本(semver,如 3.4.13);客户端低于此值时提示更新 */
minClientVersion?: string | null;
};
/** 是否展示微信授权入口 */