refactor: 重构项目结构,迁移后端至 mengyastore-backend-go,新增 Java 后端、前端功能更新及部署文档

This commit is contained in:
2026-03-27 15:10:53 +08:00
parent 84874707f5
commit 63781358b2
71 changed files with 2123 additions and 250 deletions

View File

@@ -29,7 +29,7 @@ const addToWishlist = async (productId) => {
try {
wishlistIds.value = await apiAddToWishlist(authState.token, productId)
} catch {
// ignore
// 忽略错误
}
}
@@ -38,7 +38,7 @@ const removeFromWishlist = async (productId) => {
try {
wishlistIds.value = await apiRemoveFromWishlist(authState.token, productId)
} catch {
// ignore
// 忽略错误
}
}