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

35 lines
724 B

5 months ago
  1. <template>
  2. <view>
  3. <greetCmponents :textList="textList" :path="greetP5" :btn="btn" />
  4. </view>
  5. </template>
  6. <script>
  7. import greetCmponents from "../../components/home/greetComponents.vue"
  8. export default {
  9. data() {
  10. return {
  11. textList: [
  12. '感谢您参加我们的上门威士忌品鉴服务!',
  13. '我们希望您享受了这次独特的体验。',
  14. '为了帮助我们不断提升服务质量,',
  15. '请您花几分钟时间分享您的评价和反馈。',
  16. '您的意见对我们非常重要,感谢您的支持!',
  17. ],
  18. greetP5: '/pages/index/appointment',
  19. btn: [
  20. '开始'
  21. ]
  22. }
  23. },
  24. components: {
  25. greetCmponents
  26. },
  27. methods: {
  28. }
  29. }
  30. </script>
  31. <style>
  32. </style>