直播页面

This commit is contained in:
2020-06-02 09:34:37 +08:00
parent c312152365
commit 0f5e209d64
4 changed files with 120 additions and 20 deletions

View File

@@ -12,11 +12,7 @@
<swiper class="card">
<swiper-item>
<scroll-view style="width:100%;height:100%" scroll-y="true">
<swiper class="ad" indicator-dots="true" indicator-color="#fff" indicator-active-color="#634838">
<swiper-item></swiper-item>
<swiper-item></swiper-item>
<swiper-item></swiper-item>
</swiper>
<indexad style="width:690rpx"></indexad>
<view class="list">
<view >
<videoItem v-for="item in 10"></videoItem>
@@ -29,9 +25,15 @@
</swiper-item>
<swiper-item>
<scroll-view style="width:100%;height:100%" scroll-y="true">
<view id="demo1" class="scroll-view-item uni-bg-red">A</view>
<view id="demo2" class="scroll-view-item uni-bg-green">B</view>
<view id="demo3" class="scroll-view-item uni-bg-blue">C</view>
<indexad style="width:690rpx"></indexad>
<view class="list">
<view >
<zhiboItem v-for="item in 10"></zhiboItem>
</view>
<view style="margin-left:20rpx">
<zhiboItem v-for="item in 10"></zhiboItem>
</view>
</view>
</scroll-view>
</swiper-item>
<swiper-item>
@@ -48,11 +50,11 @@
<style lang="scss" scoped>
.index{
width: 750rpx;
padding: 0 30rpx;
display: flex;
flex-direction: column;
height: 100vh;
.top{
padding: 0 30rpx;
display: flex;
justify-content: space-between;
width: 100%;
@@ -62,7 +64,6 @@
.sosuo{
width: 32rpx;
height: 32rpx;
background-color: #0f0;
}
.tabs{
display: flex;
@@ -90,13 +91,10 @@
}
}
.card{
width: 100%;
height: 100%;
.ad{
width: 100%;
height: 294rpx;
border-radius: 20rpx;
background-color: #0f0;
width: 100%;
scroll-view{
padding: 0 30rpx;
}
.list{
display: flex;
@@ -106,6 +104,9 @@
</style>
<script>
import videoItem from "@/components/index/video-item/index"
import zhiboItem from "@/components/index/zhibo-item/index"
import indexad from "@/components/index/ad/index"
export default {
name:"index",
data(){
@@ -114,7 +115,9 @@ export default {
}
},
components:{
videoItem
videoItem,
zhiboItem,
indexad
}
}
</script>