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

33 lines
633 B

<template>
<view>
<greetCmponents :textList="textList" :btn="btn"/>
</view>
</template>
<script>
import greetCmponents from "../../components/home/greetComponents.vue"
export default {
data() {
return {
textList: [
'我们已收到您的取消请求,',
'非常遗憾无法为您提供此次上门威士忌品鉴服务。',
'如果您有其他需求或在未来希望重新预约,',
'随时与我们联系。',
'期待在合适的时间为您奉上难忘的品监体验!'
],
btn: []
}
},
components: {
greetCmponents
},
methods: {
}
}
</script>
<style>
</style>