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

48 lines
1.1 KiB

  1. <template>
  2. <view class="home">
  3. <view class="content" style="padding-top: 35vh;">
  4. <span v-for="(item,index) in textList1" :key="index" class="content-text" style="font-size: 28rpx; line-height: 50rpx;">
  5. {{item}}
  6. </span>
  7. <view class="flex-col query" style="gap: 0rpx;">
  8. <view>
  9. <view class="btn2" @click="query">
  10. 开始
  11. </view>
  12. </view>
  13. <text class="second-color">欢快无限饮&nbsp;&nbsp;饮酒有限度</text>
  14. </view>
  15. </view>
  16. </view>
  17. </template>
  18. <script>
  19. export default {
  20. data() {
  21. return {
  22. textList1: [
  23. '感谢您参加我们的上门威士忌品鉴服务!',
  24. '我们希望您享受了这次独特的体验。',
  25. '为了帮助我们不断提升服务质量,',
  26. '请您花几分钟时间分享您的评价和反馈。',
  27. '您的意见对我们非常重要,感谢您的支持!',
  28. ]
  29. }
  30. },
  31. methods: {
  32. query() {
  33. uni.redirectTo({
  34. url:'/pages_order/info/experience'
  35. })
  36. }
  37. }
  38. }
  39. </script>
  40. <style lang="scss" scoped>
  41. .query {
  42. position: relative;
  43. top: 20vh;
  44. }
  45. </style>