에이전트 기능 #97

Merged
klaus merged 10 commits from test into main 2026-04-14 10:00:04 +00:00
Showing only changes of commit 864402b09d - Show all commits

View File

@@ -183,6 +183,10 @@
value="CREATOR" value="CREATOR"
label="크리에이터" label="크리에이터"
/> />
<v-radio
value="AGENT"
label="에이전트"
/>
<v-radio <v-radio
value="USER" value="USER"
label="일반회원" label="일반회원"
@@ -445,6 +449,8 @@ export default {
this.user_type = 'USER' this.user_type = 'USER'
} else if (member.userType === '크리에이터') { } else if (member.userType === '크리에이터') {
this.user_type = 'CREATOR' this.user_type = 'CREATOR'
} else if (member.userType === '에이전트') {
this.user_type = 'AGENT'
} }
this.email = member.email this.email = member.email
@@ -512,7 +518,8 @@ export default {
if ( if (
(this.user_type === 'CREATOR' && this.member.userType === '크리에이터') || (this.user_type === 'CREATOR' && this.member.userType === '크리에이터') ||
(this.user_type === 'USER' && this.member.userType === '일반회원') (this.user_type === 'USER' && this.member.userType === '일반회원') ||
(this.user_type === 'AGENT' && this.member.userType === '에이전트')
) { ) {
this.notifyError("변경사항이 없습니다.") this.notifyError("변경사항이 없습니다.")
} else { } else {