百富门答题小程序
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.
 
 
 

43 lines
707 B

<template>
<view class="home">
<image src="/static/image/bg/1.png"
class="page-bg"
mode=""></image>
<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.redirectTo({
url: '/pages_order/info/isAdult'
})
}
}
}
</script>
<style lang="scss" scoped>
.query {
position: relative;
bottom: -25vh;
}
</style>