<template>
|
|
<view class="home">
|
|
|
|
<image src="/static/image/bg/2.png"
|
|
class="page-bg"
|
|
mode=""></image>
|
|
|
|
|
|
<view class="swipe" style="padding-top: 320rpx;">
|
|
<uv-swiper :list="list"
|
|
height="300rpx"></uv-swiper>
|
|
</view>
|
|
|
|
<view class="content" style="padding-top: 40rpx;
|
|
background-color: #fff;">
|
|
<text>欢迎</text>
|
|
<text style="font-size: 80rpx; margin: 20rpx 0;">Christine</text>
|
|
<view class="flex-col" style="gap: 5rpx; margin-top: 40rpx;">
|
|
<text>来到百富门的世界</text>
|
|
<text>品味传承与创新交织的威士忌艺术</text>
|
|
<text>开启您的专属品鉴之旅</text>
|
|
</view>
|
|
<view style="margin-top: 40rpx;" @click="query">
|
|
<view class="btn2">
|
|
点击进入
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
list: [
|
|
'https://cdn.uviewui.com/uview/swiper/swiper1.png',
|
|
'https://cdn.uviewui.com/uview/swiper/swiper2.png',
|
|
'https://cdn.uviewui.com/uview/swiper/swiper3.png',
|
|
],
|
|
}
|
|
},
|
|
methods: {
|
|
query(){
|
|
uni.navigateTo({
|
|
url: '/pages_order/info/infoPages'
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|