요즘친구 -> 크리에이터 로 변경

This commit is contained in:
Yu Sung 2023-08-07 15:43:07 +09:00
parent c788a9e7dd
commit 423316cab4
3 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
<div> <div>
<v-toolbar dark> <v-toolbar dark>
<v-spacer /> <v-spacer />
<v-toolbar-title>요즘친구 정산</v-toolbar-title> <v-toolbar-title>크리에이터 정산</v-toolbar-title>
<v-spacer /> <v-spacer />
</v-toolbar> </v-toolbar>

View File

@ -2,7 +2,7 @@
<div> <div>
<v-toolbar dark> <v-toolbar dark>
<v-spacer /> <v-spacer />
<v-toolbar-title>요즘친구 리스트</v-toolbar-title> <v-toolbar-title>크리에이터 리스트</v-toolbar-title>
<v-spacer /> <v-spacer />
</v-toolbar> </v-toolbar>

View File

@ -311,7 +311,7 @@ export default {
if (member.userType === '일반회원') { if (member.userType === '일반회원') {
this.user_type = 'USER' this.user_type = 'USER'
} else if (member.userType === '요즘친구') { } else if (member.userType === '크리에이터') {
this.user_type = 'CREATOR' this.user_type = 'CREATOR'
} }
@ -333,7 +333,7 @@ export default {
this.is_loading = true this.is_loading = true
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.notifyError("변경사항이 없습니다.") this.notifyError("변경사항이 없습니다.")