1
This commit is contained in:
@@ -17,16 +17,27 @@
|
||||
<script>
|
||||
export default {
|
||||
name: 'loginBottom',
|
||||
props:{
|
||||
checked:{
|
||||
type:Boolean,
|
||||
default:false
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
count: 0,
|
||||
hotline: '4008-56-5355'
|
||||
}
|
||||
},
|
||||
watch:{
|
||||
checked(n){
|
||||
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
onChange() {
|
||||
this.count++
|
||||
this.$emit('onCheck', this.count % 2 != 0)
|
||||
onChange() {
|
||||
let checked = !this.checked
|
||||
this.$emit('onCheck', checked)
|
||||
},
|
||||
toAgree(link) {
|
||||
uni.navigateTo({
|
||||
|
||||
Reference in New Issue
Block a user