海南旅游项目 前端仓库
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.
 
 
 
 

276 lines
6.7 KiB

<template>
<view>
<swiper class="head" :current="banner_current" >
<swiper-item>
<image src="https://picsum.photos/375/360" class="swipe-img"></image>
</swiper-item>
<swiper-item>
<image src="https://picsum.photos/375/360" class="swipe-img"></image>
</swiper-item>
</swiper>
<view class="content">
<!-- 消息模块 -->
<view class="lf-row-between lf-m-b-34 message-box">
<view class="lf-flex">
<u-icon name="lock-fill lf-text-vertical"></u-icon>
<view class="lf-m-l-12 lf-line-1" style="max-width: 510rpx;">国庆优惠大促快来看看吧</view>
</view>
<view class="message-btn" hover-class="lf-opacity">详情</view>
</view>
<!-- 频道 -->
<view class="lf-row-between lf-m-b-10">
<view class="lf-font-36 lf-font-bold lf-color-333">添加频道</view>
<view class="lf-flex lf-color-555">
<view class="lf-m-r-10">编辑</view>
<u-icon name="lock-fill lf-text-vertical"></u-icon>
</view>
</view>
<view class="lf-flex-wrap">
<view class="channel-item" v-for="(item, index) in 8">
<image src="../../static/logo.png" class="channel-mask" mode="aspectFill"></image>
<view>
<u-icon name="lock-fill lf-text-vertical"></u-icon>
</view>
</view>
</view>
<!-- 中间广告模块 -->
<swiper class="lf-m-t-40 ad" :current="banner_current" >
<swiper-item>
<image src="https://picsum.photos/375/230" class="lf-w-100 lf-h-100"></image>
</swiper-item>
</swiper>
<!-- 精品推荐 -->
<view class="lf-row-between lf-m-t-40">
<view class="lf-font-36 lf-font-bold lf-color-333">精品推荐</view>
<view class="lf-flex lf-color-555">
<view class="lf-m-r-10">更多</view>
<u-icon name="lock-fill lf-text-vertical"></u-icon>
</view>
</view>
<view class="recomm lf-m-t-20">
<view class="lf-row-between">
<view class="max-recomm-img">
<image src="../../static/logo.png" class="lf-w-100 lf-h-100"></image>
<view class="recomm-title">
<view class="lf-line-2">土耳其双人游飞机往返酒店五星级各大热门景点豪华双人游纯江湖救急</view>
<view class="lf-font-42 lf-font-bold lf-m-t-10" style="color: #FF0000;">¥3999.00</view>
</view>
</view>
<view>
<view class="recomm-img">
<image src="../../static/logo.png" class="lf-w-100 lf-h-100"></image>
</view>
<view class="recomm-img lf-m-t-10">
<image src="../../static/logo.png" class="lf-w-100 lf-h-100"></image>
</view>
</view>
</view>
<view class="lf-row-between lf-m-t-10">
<view class="recomm-img">
<image src="../../static/logo.png" class="lf-w-100 lf-h-100"></image>
</view>
<view class="recomm-img">
<image src="../../static/logo.png" class="lf-w-100 lf-h-100"></image>
</view>
<view class="recomm-img">
<image src="../../static/logo.png" class="lf-w-100 lf-h-100"></image>
</view>
</view>
</view>
<!-- tab标签 -->
<view class="lf-m-t-40">
<u-tabs :list="tab_list" :is-scroll="true" :current="current" @change="tabChange"></u-tabs>
</view>
</view>
<!-- 商品列表-瀑布流 -->
<view v-for="(tabItem, tabIndex) in tab_list" :key="tabIndex" v-if="current == tabIndex" style="padding: 0 20rpx;">
<lf-waterfall :list="tabItem.list"></lf-waterfall>
<u-loadmore v-if="tabItem.list.length" :status="tabItem.loading_text" @loadmore="addRandomData"></u-loadmore>
<lf-nocontent v-else></lf-nocontent>
</view>
<!-- 回到顶部 -->
<u-back-top :scroll-top="pageScrollTop" :custom-style="{background: 'rgba(51, 51 51, 0.3)'}"></u-back-top>
</view>
</template>
<script>
import lfWaterfall from '../../components/lf-waterfall/lf-waterfall.vue';
export default {
components: {
lfWaterfall
},
data() {
return {
banner_current: 0,
tab_list: [{
name: '推荐',
list: []
},{
name: '酒店',
list: []
},{
name: '推荐',
list: []
},{
name: '酒店',
list: []
},{
name: '推荐',
list: []
},{
name: '酒店',
list: []
}],
current: 0
}
},
onLoad() {
// this.addRandomData();
},
methods: {
addRandomData() {
for(let i = 0; i < 10; i++) {
let index = this.$u.random(0, this.list.length - 1);
// 先转成字符串再转成对象,避免数组对象引用导致数据混乱
let item = JSON.parse(JSON.stringify(this.list[index]))
item.id = this.$u.guid();
this.flowList.push(item);
}
},
tabChange(current){
this.current = current;
},
pageChange(event){
console.log(event)
this.current = event.detail.current;
}
},
onReachBottom() {
},
onPullDownRefresh(){
uni.stopPullDownRefresh();
}
}
</script>
<style>
page{
background-color: #F6F6F6;
}
</style>
<style lang="scss" scoped>
.head{
width: 750rpx;
height: 360rpx;
.swipe-img{
width: 100%;
height: 100%;
}
}
.content{
width: 750rpx;
// height: 600rpx;
height: max-content;
border-radius: 30rpx 30rpx 0rpx 0rpx;
position: relative;
top: -30rpx;
background-color: #FFFFFF;
box-sizing: border-box;
padding: 40rpx 32rpx 10rpx;
.message-box{
width: 686rpx;
height: 53rpx;
background: #CFE7FD;
border-radius: 27rpx;
color: #1998FE;
box-sizing: border-box;
padding: 0 20rpx;
font-size: 24rpx;
.message-btn{
width: 80rpx;
height: 33rpx;
border-radius: 10rpx;
border: 1rpx solid #1998FE;
text-align: center;
line-height: 31rpx;
}
}
}
.channel-item{
width: 160rpx;
height: 160rpx;
border-radius: 15rpx;
margin-top: 15rpx;
margin-right: 15rpx;
position: relative;
overflow: hidden;
&:nth-child(4n){
margin-right: 0;
}
image{
width: 160rpx;
height: 160rpx;
position: absolute;
z-index: 0;
}
view{
position: absolute;
right: 0;
bottom: 0;
background-color: rgba(255,255,255,0.5);
width: 42rpx;
height: 42rpx;
color: #FFFFFF;
display: flex;
justify-content: center;
align-items: center;
border-radius: 10rpx 0rpx 15rpx 0rpx;
z-index: 2;
}
.channel-mask::after{
width: 100%;
height: 100%;
content: '';
position: absolute;
z-index: 1;
background: rgba(0, 0, 0, 0.5);
top: 0;
left: 0;
}
}
.ad{
height: 230rpx;
width: 100%;
}
.recomm{
width: 100%;
height: max-content;
.recomm-img{
width: 222rpx;
height: 222rpx;
border-radius: 10rpx;
}
.max-recomm-img{
width: 455rpx;
height: 455rpx;
position: relative;
.recomm-title{
// height: 142rpx;
height: max-content;
width: 100%;
background-color: rgba(0,0,0,0.65);
box-sizing: border-box;
padding: 15rpx;
position: absolute;
bottom: 0;
color: #FFFFFF;
}
}
}
</style>