From a58a5cc0d192b988ecf1da45a01a9747d510dbdb Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Thu, 7 May 2026 15:27:53 +0900 Subject: [PATCH] =?UTF-8?q?feat(member):=20=EA=B3=84=EC=A0=95=20=EC=83=81?= =?UTF-8?q?=EC=84=B8=20=ED=8C=9D=EC=97=85=EC=97=90=20=EC=BD=98=ED=85=90?= =?UTF-8?q?=EC=B8=A0=20=EA=B4=80=EB=A6=AC=EC=9E=90=20=EA=B6=8C=ED=95=9C=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80=20=EB=B0=8F=20=EB=9D=BC=EB=B2=A8/=EA=B2=80?= =?UTF-8?q?=EC=83=89=20=EB=B2=84=ED=8A=BC=20=EC=83=89=EC=83=81=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 신규 권한: CONTENT_MANAGER 라디오 옵션 및 매핑 추가 - 라벨 변경: '사용 여부' → '권한' - 검색 버튼 색상: #3bb9f1로 변경 왜: 콘텐츠 관리자 권한 지원 및 UI 용어/가시성 개선 무엇: MemberList.vue 수정으로 옵션/매핑/라벨/컬러 반영 --- src/views/Member/MemberList.vue | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/views/Member/MemberList.vue b/src/views/Member/MemberList.vue index 8bcd212..cd3e198 100644 --- a/src/views/Member/MemberList.vue +++ b/src/views/Member/MemberList.vue @@ -19,7 +19,7 @@ > @@ -171,7 +171,7 @@ - 사용 여부 + 권한 + @@ -451,6 +455,8 @@ export default { this.user_type = 'CREATOR' } else if (member.userType === '에이전트') { this.user_type = 'AGENT' + } else if (member.userType === '콘텐츠 관리자') { + this.user_type = 'CONTENT_MANAGER' } this.email = member.email @@ -519,7 +525,8 @@ export default { if ( (this.user_type === 'CREATOR' && this.member.userType === '크리에이터') || (this.user_type === 'USER' && this.member.userType === '일반회원') || - (this.user_type === 'AGENT' && this.member.userType === '에이전트') + (this.user_type === 'AGENT' && this.member.userType === '에이전트') || + (this.user_type === 'CONTENT_MANAGER' && this.member.userType === '콘텐츠 관리자') ) { this.notifyError("변경사항이 없습니다.") } else {