mirror of
https://github.com/yawaflua/LuckyDiamond.git
synced 2025-12-10 12:19:31 +02:00
fixed checkbox and method offbtn
This commit is contained in:
@@ -21,7 +21,7 @@
|
|||||||
<input class="promo-input" type="text">
|
<input class="promo-input" type="text">
|
||||||
</div>
|
</div>
|
||||||
<div class="deposit-checkbox checkbox-styles">
|
<div class="deposit-checkbox checkbox-styles">
|
||||||
<input type="checkbox">
|
<input @click="agreeUser = !agreeUser" type="checkbox">
|
||||||
<h3>Я согласен с пользовательским соглашением.</h3>
|
<h3>Я согласен с пользовательским соглашением.</h3>
|
||||||
</div>
|
</div>
|
||||||
<div class="btn-deposit btn-text-style btn-display-deposit btn-style-payments">
|
<div class="btn-deposit btn-text-style btn-display-deposit btn-style-payments">
|
||||||
@@ -94,14 +94,16 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
computed: {
|
||||||
closeModal() {
|
|
||||||
return this.$emit('closemodal')
|
|
||||||
},
|
|
||||||
checkOffBtn() {
|
checkOffBtn() {
|
||||||
console.log(this.offBtn !== false && this.agreeUser !== false)
|
console.log(this.offBtn !== false && this.agreeUser !== false)
|
||||||
return this.offBtn === false && this.agreeUser !== false
|
return this.offBtn === false && this.agreeUser !== false
|
||||||
},
|
},
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
closeModal() {
|
||||||
|
return this.$emit('closemodal')
|
||||||
|
},
|
||||||
RedirectedMethodDep() {
|
RedirectedMethodDep() {
|
||||||
window.location.href = this.url
|
window.location.href = this.url
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user