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

34 lines
732 B

  1. <template>
  2. <view class="home">
  3. <view class="content" style="padding-top: 30vh;">
  4. <span v-for="(item,index) in textList1" :key="index" class="content-text" style="font-size: 28rpx;">
  5. {{item}}
  6. </span>
  7. </view>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. textList1: [
  15. '我们已收到您的取消请求,',
  16. '非常遗憾无法为您提供此次上门威士忌品鉴服务。',
  17. '如果您有其他需求或在未来希望重新预约,',
  18. '随时与我们联系。',
  19. '期待在合适的时间为您奉上难忘的品监体验!',
  20. ],
  21. }
  22. },
  23. methods: {
  24. }
  25. }
  26. </script>
  27. <style lang="scss" scoped>
  28. .query {
  29. position: relative;
  30. top: 30vh;
  31. }
  32. </style>