에이전트 기능 #97
@@ -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 {
|
||||||
|
|||||||
Reference in New Issue
Block a user