-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
관리화면에서 특수문자 제대로 나오게 수정 및 그룹 ID 변경 가능하게 수정
- Loading branch information
Heegeun Park
committed
Aug 13, 2024
1 parent
07ef864
commit a74248a
Showing
9 changed files
with
161 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<template> | ||
<v-dialog v-model="list.changeGroupIdDialog" persistent> | ||
<v-card :max-width="home.dialogWidth" class="mx-auto" :color="home.color.header"> | ||
<v-card-title>그룹ID 변경하기</v-card-title> | ||
<v-divider></v-divider> | ||
<v-card-text> | ||
<v-text-field | ||
v-model="list.changeGroupId" | ||
hide-details | ||
bg-color="white" | ||
width="200" | ||
variant="solo" | ||
prepend-inner-icon="mdi-identifier" | ||
></v-text-field> | ||
</v-card-text> | ||
<v-divider></v-divider> | ||
|
||
<v-card-actions> | ||
<v-btn prepend-icon="mdi-close" rounded="xl" @click="list.closeChangeGroupIdDialog" | ||
>닫기</v-btn | ||
> | ||
<v-spacer></v-spacer> | ||
<v-btn prepend-icon="mdi-content-save" rounded="xl" @click="list.updateGroupId" | ||
>변경하기</v-btn | ||
> | ||
</v-card-actions> | ||
</v-card> | ||
</v-dialog> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import { useAdminGroupListStore } from "../../../store/admin/group/list" | ||
import { useHomeStore } from "../../../store/home" | ||
const list = useAdminGroupListStore() | ||
const home = useHomeStore() | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters