百富门答题小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

39 lines
630 B

<template>
<view class="home">
<view class="content">
<span class="font-bold mb-60">请选择您所在的区域</span>
<view class="flex-col query" style="gap: 0rpx;">
<view class="btn2" @click="next">
确定
</view>
<text class="second-color">欢快无限饮&nbsp;&nbsp;饮酒有限度</text>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
next(){
uni.navigateTo({
url:'/pages/index/checkAge'
})
}
}
}
</script>
<style lang="scss" scoped>
.query{
position: absolute;
bottom: -25vh;
}
</style>