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

38 lines
769 B

<template>
<view>
<greetCmponents :textList="textList" :path="reschedule" :btn="btn" />
</view>
</template>
<script>
import greetCmponents from "../../components/home/greetComponents.vue"
export default {
data() {
return {
textList: [
'非常抱歉,由于特殊原因,',
'我们暂时无法在您最初选定的时间段',
'进行上门品鉴服务。',
'为了确保您享受到最完美的威士忌体验,',
'恳请您重新选择一个方便的时间,',
'我们将优先为您安排,',
'感谢您的理解与支持。'
],
reschedule: '/pages/index/appointment',
btn: [
'查看详情'
]
}
},
components: {
greetCmponents
},
methods: {
}
}
</script>
<style>
</style>