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

42 lines
707 B

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