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

32 lines
633 B

8 months ago
  1. <template>
  2. <view>
  3. <greetCmponents :textList="textList" :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. btn: []
  19. }
  20. },
  21. components: {
  22. greetCmponents
  23. },
  24. methods: {
  25. }
  26. }
  27. </script>
  28. <style>
  29. </style>