캐릭터 챗봇 #74

Merged
klaus merged 33 commits from test into main 2025-09-10 06:26:03 +00:00
1 changed files with 5 additions and 5 deletions
Showing only changes of commit 89b2f1f740 - Show all commits

View File

@ -60,7 +60,7 @@
<v-card-text>
지급할 : {{ can }}
</v-card-text>
<v-card-actions v-show="!isLoading">
<v-card-actions v-show="!is_loading">
<v-spacer />
<v-btn
color="blue darken-1"
@ -95,7 +95,7 @@ export default {
data() {
return {
show_confirm: false,
isLoading: false,
is_loading: false,
account_id: '',
method: '',
can: ''
@ -124,7 +124,7 @@ export default {
return this.notifyError('캔은 숫자만 넣을 수 있습니다.')
}
if (!this.isLoading) {
if (!this.is_loading) {
this.show_confirm = true
}
},
@ -134,8 +134,8 @@ export default {
},
async submit() {
if (!this.isLoading) {
this.isLoading = true
if (!this.is_loading) {
this.is_loading = true
try {
this.show_confirm = false