This commit is contained in:
caolc
2023-09-08 10:01:06 +08:00
parent 5adc52996c
commit 4d5aa4ac8d
12 changed files with 957 additions and 107 deletions

View File

@@ -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({