项目优化,构建文件Lombok异常问题修复

This commit is contained in:
2026-06-29 13:55:42 +08:00
parent 53b3b2c989
commit 0799f9cb4d
47 changed files with 1034 additions and 865 deletions
+9 -1
View File
@@ -18,12 +18,20 @@ export default defineComponent({
title: "404",
message: "访问页面不存在"
},
403: {
title: "403",
message: "无权限访问"
},
500: {
title: "500",
message: "服务器错误"
},
error: {
title: "错误",
message: "访问出错了"
}
};
const tip: ITip = tips[to?.toString() ?? "error"];
const tip: ITip = tips[to?.toString()] || tips["error"];
const onBack = () => {
router.back();
};