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

36 lines
732 B

8 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. ],
  19. greetP5: '/pages/index/appointment',
  20. btn: [
  21. '查看详情'
  22. ]
  23. }
  24. },
  25. components: {
  26. greetCmponents
  27. },
  28. methods: {
  29. }
  30. }
  31. </script>
  32. <style>
  33. </style>