feat: 更新 @riwa/api-types 依赖至 0.0.84,并调整相关组件的属性和 API 调用

This commit is contained in:
2026-01-07 17:59:45 +07:00
parent 7fd004e4d2
commit 6cc6aa7200
4 changed files with 12 additions and 12 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.17:9527/api/riwa-eden-0.0.82.tgz",
"@riwa/api-types": "http://192.168.1.17:9527/api/riwa-eden-0.0.84.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.17:9527/api/riwa-eden-0.0.82.tgz
version: '@riwa/eden@http://192.168.1.17:9527/api/riwa-eden-0.0.82.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.17:9527/api/riwa-eden-0.0.84.tgz
version: '@riwa/eden@http://192.168.1.17:9527/api/riwa-eden-0.0.84.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.17:9527/api/riwa-eden-0.0.82.tgz':
resolution: {tarball: http://192.168.1.17:9527/api/riwa-eden-0.0.82.tgz}
version: 0.0.82
'@riwa/eden@http://192.168.1.17:9527/api/riwa-eden-0.0.84.tgz':
resolution: {tarball: http://192.168.1.17:9527/api/riwa-eden-0.0.84.tgz}
version: 0.0.84
peerDependencies:
'@elysiajs/eden': ^1.4.5
@@ -5080,7 +5080,7 @@ snapshots:
dependencies:
quansync: 0.3.0
'@riwa/eden@http://192.168.1.17:9527/api/riwa-eden-0.0.82.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.17:9527/api/riwa-eden-0.0.84.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

@@ -13,7 +13,7 @@ interface LockOption {
const props = defineProps<{
options: LockOption[];
productId: string;
id: string;
}>();
const emit = defineEmits<{
@@ -45,7 +45,7 @@ function handleSubmit() {
formRef.value?.validate(async errors => {
if (!errors) {
await safeClient(() =>
client.api.admin.rwa.tokenization_schema.config({ productId: props.productId }).put({
client.api.admin.rwa.tokenization_schema({ id: props.id }).lock_options.patch({
lockOptions: lockOptions.value
})
);

View File

@@ -12,7 +12,7 @@ const tableInst = useTemplateRef<TableInst>('tableInst');
const fetchData: TableFetchData = ({ pagination, filter }) => {
return safeClient(() =>
client.api.admin.rwa.tokenization_schema.configs.get({
client.api.admin.rwa.tokenization_schema.get({
query: {
...pagination,
...filter
@@ -104,7 +104,7 @@ const columns: TableBaseColumns = [
size: 'small',
visible: row.enabled === true,
onClick: async () => {
await safeClient(client.api.admin.rwa.tokenization_schema.disable({ productId: row.productId }).delete());
await safeClient(client.api.admin.rwa.tokenization_schema({ id: row.id }).disable.patch());
window.$message?.success('资产化已关闭。');
tableInst.value?.reload();
}
@@ -134,7 +134,7 @@ function handleUpdateLockOptions(row: any) {
content: () =>
h(LockOptions, {
options: row.lockOptions,
productId: row.productId,
id: row.id,
onClose: () => {
dialogInstance.destroy();
tableInst.value?.reload();