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

59 lines
1.2 KiB

5 months ago
  1. <template>
  2. <view class="home">
  3. <view class="content mt-30">
  4. <span v-for="(item,index) in textList" :key="index" style="margin-top: 10rpx;">
  5. {{item}}
  6. </span>
  7. <view class="flex-col query" style="gap: 0rpx;">
  8. <view class="flex-sa">
  9. <view class="btn3" @click="pre">
  10. 返回
  11. </view>
  12. <view class="btn3" @click="next">
  13. 点击预约
  14. </view>
  15. </view>
  16. <text class="second-color">欢快无限饮&nbsp;&nbsp;饮酒有限度</text>
  17. </view>
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. export default {
  23. data() {
  24. return {
  25. textList: [
  26. '您的品味值得专属礼遇!',
  27. '在您生成了专属称号之后,',
  28. '我们将为您提供一次奢华的',
  29. '上门威士忌品鉴服务,',
  30. '让您在舒适的环境中,',
  31. '品味与您的称号完美契合的精致佳酿。'
  32. ]
  33. }
  34. },
  35. methods: {
  36. pre() {
  37. uni.navigateTo({
  38. url: '/pages/index/greetP5'
  39. })
  40. },
  41. next() {
  42. uni.navigateTo({
  43. url: '/pages/index/viewDetail'
  44. })
  45. }
  46. }
  47. }
  48. </script>
  49. <style lang="scss" scoped>
  50. .query {
  51. position: absolute;
  52. bottom: -25vh;
  53. }
  54. .mt-30 {
  55. padding-top: 30vh;
  56. }
  57. </style>