Refactor MasterDetailMntC.vue for improved readability and consistency

This commit is contained in:
skytek_xinliang
2026-03-30 09:18:55 +08:00
parent 7591ecd062
commit 16b58fbf7a
66 changed files with 2071 additions and 777 deletions
+1 -2
View File
@@ -13,7 +13,7 @@ export type HttpErrorDetail = {
let httpErrorEmitted = false
export function emitHttpError (detail: HttpErrorDetail) {
export function emitHttpError(detail: HttpErrorDetail) {
// 避免同一波大量錯誤觸發多次導頁
if (httpErrorEmitted) return
httpErrorEmitted = true
@@ -25,4 +25,3 @@ export function emitHttpError (detail: HttpErrorDetail) {
httpErrorEmitted = false
}, 0)
}