|
|
- <template>
- <view class="home">
- <view class="content" style="padding-top: 30vh;">
- <span v-for="(item,index) in textList1" :key="index" class="content-text" style="font-size: 28rpx;">
- {{item}}
- </span>
- </view>
- </view>
- </template>
-
- <script>
- export default {
- data() {
- return {
- textList1: [
- '我们已收到您的取消请求,',
- '非常遗憾无法为您提供此次上门威士忌品鉴服务。',
- '如果您有其他需求或在未来希望重新预约,',
- '随时与我们联系。',
- '期待在合适的时间为您奉上难忘的品监体验!',
- ],
- }
- },
- methods: {
-
- }
- }
- </script>
-
- <style lang="scss" scoped>
- .query {
- position: relative;
- top: 30vh;
- }
- </style>
|