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

37 lines
769 B

8 months ago
  1. <template>
  2. <view>
  3. <greetCmponents :textList="textList" :path="reschedule" :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. ],
  20. reschedule: '/pages/index/appointment',
  21. btn: [
  22. '查看详情'
  23. ]
  24. }
  25. },
  26. components: {
  27. greetCmponents
  28. },
  29. methods: {
  30. }
  31. }
  32. </script>
  33. <style>
  34. </style>