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