버그 수정, 모임장 설정 수정
This commit is contained in:
@@ -85,7 +85,7 @@
|
||||
</div>
|
||||
<div class="field col-6 mb-3">
|
||||
<label for="memberType" class="mb-1">회원 유형</label>
|
||||
<Select id="memberType" v-model="member.memberType" :options="memberTypes" optionLabel="name" optionValue="code" placeholder="회원 유형 선택" class="w-full" />
|
||||
<Select id="memberType" v-model="member.memberType" :options="memberTypeOptions" optionLabel="name" optionValue="code" placeholder="회원 유형 선택" class="w-full" />
|
||||
</div>
|
||||
<div class="field col-6 mb-3">
|
||||
<label for="phone" class="mb-1">전화번호</label>
|
||||
@@ -194,12 +194,12 @@ import { useToast } from 'primevue/usetoast';
|
||||
const clubStore = useClubStore();
|
||||
const toast = useToast();
|
||||
|
||||
// 회원 유형 목록
|
||||
const memberTypes = ref([
|
||||
// 회원 유형 옵션
|
||||
const memberTypeOptions = ref([
|
||||
{ name: '정회원', code: '정회원' },
|
||||
{ name: '준회원', code: '준회원' },
|
||||
{ name: '운영진', code: '운영진' },
|
||||
{ name: '모임장', code: '모임장' }
|
||||
{ name: '운영진', code: '운영진' }
|
||||
// 모임장 옵션은 제거 - 클럽 설정에서만 변경 가능하도록 제한
|
||||
]);
|
||||
|
||||
// 성별 옵션
|
||||
|
||||
Reference in New Issue
Block a user