feat(character-image): 캐릭터 이미지 관리(목록/등록/수정/삭제/정렬) 추가

This commit is contained in:
Yu Sung
2025-08-22 02:25:37 +09:00
parent 071502d869
commit 63ebe9708f
5 changed files with 711 additions and 1 deletions

View File

@@ -141,6 +141,16 @@
수정
</v-btn>
</v-col>
<v-col>
<v-btn
small
color="info"
:disabled="is_loading"
@click="goToImageList(item)"
>
이미지
</v-btn>
</v-col>
<v-col>
<v-btn
small
@@ -306,6 +316,13 @@ export default {
this.$router.push('/character/form');
},
goToImageList(item) {
this.$router.push({
path: '/character/images',
query: { characterId: item.id, name: item.name }
})
},
showEditDialog(item) {
// 페이지로 이동하면서 id 전달
this.$router.push({