feat(frontend): add P2 quality gates

This commit is contained in:
yml2213
2026-05-15 17:35:50 +08:00
parent a65c0713fb
commit 787b01749c
62 changed files with 4907 additions and 1355 deletions
+5 -1
View File
@@ -44,7 +44,11 @@ export function showError(message: string, options: Partial<MessageOptions> = {}
})
}
export function showConfirm(message: string, title = '确认操作', options: ElMessageBoxOptions = {}) {
export function showConfirm(
message: string,
title = '确认操作',
options: ElMessageBoxOptions = {},
) {
return ElMessageBox.confirm(message, title, {
...baseConfirmOptions,
...options,