feat: 更新 @riwa/api-types 依赖至 0.0.108,修复分类创建时的 categoryId 赋值逻辑

This commit is contained in:
2026-01-08 23:40:16 +07:00
parent afb52e1a73
commit be085db45b
4 changed files with 13 additions and 9 deletions

View File

@@ -50,7 +50,7 @@
"@better-scroll/core": "2.5.1",
"@elysiajs/eden": "^1.4.5",
"@iconify/vue": "5.0.0",
"@riwa/api-types": "http://192.168.1.7:9527/api/riwa-eden-0.0.107.tgz",
"@riwa/api-types": "http://192.168.1.7:9527/api/riwa-eden-0.0.108.tgz",
"@sa/axios": "workspace:*",
"@sa/color": "workspace:*",
"@sa/hooks": "workspace:*",

12
pnpm-lock.yaml generated
View File

@@ -18,8 +18,8 @@ importers:
specifier: 5.0.0
version: 5.0.0(vue@3.5.25(typescript@5.9.3))
'@riwa/api-types':
specifier: http://192.168.1.7:9527/api/riwa-eden-0.0.107.tgz
version: '@riwa/eden@http://192.168.1.7:9527/api/riwa-eden-0.0.107.tgz(@elysiajs/eden@1.4.5(elysia@1.4.19(@sinclair/typebox@0.34.41)(exact-mirror@0.2.5(@sinclair/typebox@0.34.41))(file-type@21.1.1)(openapi-types@12.1.3)(typescript@5.9.3)))'
specifier: http://192.168.1.7:9527/api/riwa-eden-0.0.108.tgz
version: '@riwa/eden@http://192.168.1.7:9527/api/riwa-eden-0.0.108.tgz(@elysiajs/eden@1.4.5(elysia@1.4.19(@sinclair/typebox@0.34.41)(exact-mirror@0.2.5(@sinclair/typebox@0.34.41))(file-type@21.1.1)(openapi-types@12.1.3)(typescript@5.9.3)))'
'@sa/axios':
specifier: workspace:*
version: link:packages/axios
@@ -1083,9 +1083,9 @@ packages:
'@quansync/fs@0.1.6':
resolution: {integrity: sha512-zoA8SqQO11qH9H8FCBR7NIbowYARIPmBz3nKjgAaOUDi/xPAAu1uAgebtV7KXHTc6CDZJVRZ1u4wIGvY5CWYaw==}
'@riwa/eden@http://192.168.1.7:9527/api/riwa-eden-0.0.107.tgz':
resolution: {tarball: http://192.168.1.7:9527/api/riwa-eden-0.0.107.tgz}
version: 0.0.107
'@riwa/eden@http://192.168.1.7:9527/api/riwa-eden-0.0.108.tgz':
resolution: {tarball: http://192.168.1.7:9527/api/riwa-eden-0.0.108.tgz}
version: 0.0.108
peerDependencies:
'@elysiajs/eden': ^1.4.5
@@ -5080,7 +5080,7 @@ snapshots:
dependencies:
quansync: 0.3.0
'@riwa/eden@http://192.168.1.7:9527/api/riwa-eden-0.0.107.tgz(@elysiajs/eden@1.4.5(elysia@1.4.19(@sinclair/typebox@0.34.41)(exact-mirror@0.2.5(@sinclair/typebox@0.34.41))(file-type@21.1.1)(openapi-types@12.1.3)(typescript@5.9.3)))':
'@riwa/eden@http://192.168.1.7:9527/api/riwa-eden-0.0.108.tgz(@elysiajs/eden@1.4.5(elysia@1.4.19(@sinclair/typebox@0.34.41)(exact-mirror@0.2.5(@sinclair/typebox@0.34.41))(file-type@21.1.1)(openapi-types@12.1.3)(typescript@5.9.3)))':
dependencies:
'@elysiajs/eden': 1.4.5(elysia@1.4.19(@sinclair/typebox@0.34.41)(exact-mirror@0.2.5(@sinclair/typebox@0.34.41))(file-type@21.1.1)(openapi-types@12.1.3)(typescript@5.9.3))

View File

@@ -74,7 +74,9 @@ function handleAddCategory() {
if (data) {
window.$message?.success('分类创建成功');
await refreshCategories();
form.value.categoryId = data.value?.id;
if (data.value?.id) {
form.value.categoryId = data.value.id;
}
}
}
});

View File

@@ -76,7 +76,9 @@ function handleAddCategory() {
if (data) {
window.$message?.success('分类创建成功');
await refreshCategories();
form.value.categoryId = data.value?.id;
if (data.value?.id) {
form.value.categoryId = data.value.id;
}
}
}
});