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

37 lines
626 B

  1. <template>
  2. <view class="home">
  3. <view class="content">
  4. <span class="font-bold mb-60">请选择您所在的区域</span>
  5. <view class="flex-col query" style="gap: 0rpx;">
  6. <view class="btn2" @click="next">
  7. 确定
  8. </view>
  9. <text class="second-color">欢快无限饮&nbsp;&nbsp;饮酒有限度</text>
  10. </view>
  11. </view>
  12. </view>
  13. </template>
  14. <script>
  15. export default {
  16. data() {
  17. return {
  18. }
  19. },
  20. methods: {
  21. next() {
  22. uni.navigateTo({
  23. url: '/pages_order/info/isAdult'
  24. })
  25. }
  26. }
  27. }
  28. </script>
  29. <style lang="scss" scoped>
  30. .query {
  31. position: relative;
  32. bottom: -25vh;
  33. }
  34. </style>