feat(goods): per-member detail tabs in edit dialog; revert right-tree to raw names; split configured/family badges; add GET /origin-goods/:id

This commit is contained in:
yeuimu
2026-08-28 16:55:07 +08:00
parent 753b554413
commit f28f51155f
7 changed files with 281 additions and 151 deletions
@@ -26,6 +26,12 @@ export class OriginGoodsController {
return this.service.findAll(query);
}
@Get(':id')
@ApiOperation({ summary: '单链接详情(detail + variants,成员展开面板用)' })
findOne(@Param('id') id: string) {
return this.service.findOne(BigInt(id));
}
@Get(':id/tags')
@ApiOperation({ summary: '链接当前标签(含 manual 标记)' })
getTags(@Param('id') id: string) {