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

<template>
<view>
<greetCmponents :textList="textList" :path="greetP5" :btn="btn" />
</view>
</template>
<script>
import greetCmponents from "../../components/home/greetComponents.vue"
export default {
data() {
return {
textList: [
'感谢您的预约!',
'我们已成功安排了您的上门威士忌品鉴服务。',
'我们将为您提供一次奢华的',
'我们的专员将在您选择的时间到达,',
'为您带来精致的品鉴体验。',
'期待与您共享这段美妙的威士忌之旅!'
],
greetP5: '/pages/index/appointment',
btn: [
'查看详情'
]
}
},
components: {
greetCmponents
},
methods: {
}
}
</script>
<style>
</style>