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

8 months ago
  1. <template>
  2. <view>
  3. <greetCmponents title="" :textList="textList" :path="back" :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. back:'/pages/index/appointment',
  18. btn:[
  19. '返回'
  20. ]
  21. }
  22. },
  23. components:{
  24. greetCmponents
  25. },
  26. methods: {
  27. }
  28. }
  29. </script>
  30. <style>
  31. </style>