<template>
|
|
<view class="home">
|
|
<view class="content" style="padding-top: 35vh;">
|
|
<span v-for="(item,index) in textList1" :key="index" class="content-text" style="font-size: 28rpx; line-height: 50rpx;">
|
|
{{item}}
|
|
</span>
|
|
<view class="flex-col query" style="gap: 0rpx;">
|
|
<view>
|
|
<view class="btn2" @click="query">
|
|
开始
|
|
</view>
|
|
</view>
|
|
<text class="second-color">欢快无限饮 饮酒有限度</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
textList1: [
|
|
'感谢您参加我们的上门威士忌品鉴服务!',
|
|
'我们希望您享受了这次独特的体验。',
|
|
'为了帮助我们不断提升服务质量,',
|
|
'请您花几分钟时间分享您的评价和反馈。',
|
|
'您的意见对我们非常重要,感谢您的支持!',
|
|
]
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
query() {
|
|
uni.redirectTo({
|
|
url:'/pages_order/info/experience'
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.query {
|
|
position: relative;
|
|
top: 20vh;
|
|
}
|
|
</style>
|