fix: isLoading으로 표시된 변수 is_loading으로 변경
This commit is contained in:
parent
09c6605aed
commit
89b2f1f740
|
@ -60,7 +60,7 @@
|
||||||
<v-card-text>
|
<v-card-text>
|
||||||
지급할 캔 수: {{ can }} 캔
|
지급할 캔 수: {{ can }} 캔
|
||||||
</v-card-text>
|
</v-card-text>
|
||||||
<v-card-actions v-show="!isLoading">
|
<v-card-actions v-show="!is_loading">
|
||||||
<v-spacer />
|
<v-spacer />
|
||||||
<v-btn
|
<v-btn
|
||||||
color="blue darken-1"
|
color="blue darken-1"
|
||||||
|
@ -95,7 +95,7 @@ export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
show_confirm: false,
|
show_confirm: false,
|
||||||
isLoading: false,
|
is_loading: false,
|
||||||
account_id: '',
|
account_id: '',
|
||||||
method: '',
|
method: '',
|
||||||
can: ''
|
can: ''
|
||||||
|
@ -124,7 +124,7 @@ export default {
|
||||||
return this.notifyError('캔은 숫자만 넣을 수 있습니다.')
|
return this.notifyError('캔은 숫자만 넣을 수 있습니다.')
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!this.isLoading) {
|
if (!this.is_loading) {
|
||||||
this.show_confirm = true
|
this.show_confirm = true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -134,8 +134,8 @@ export default {
|
||||||
},
|
},
|
||||||
|
|
||||||
async submit() {
|
async submit() {
|
||||||
if (!this.isLoading) {
|
if (!this.is_loading) {
|
||||||
this.isLoading = true
|
this.is_loading = true
|
||||||
|
|
||||||
try {
|
try {
|
||||||
this.show_confirm = false
|
this.show_confirm = false
|
||||||
|
|
Loading…
Reference in New Issue