直播列表

This commit is contained in:
luyuan 2020-07-27 14:35:32 +08:00
parent 410a7850e6
commit b2d284f666
Signed by: theluyuan
GPG Key ID: A7972FD973317FF3
3 changed files with 10 additions and 7 deletions

View File

@ -1,10 +1,10 @@
<template> <template>
<view class="zhibo"> <view class="zhibo">
<image class="head"></image> <image class="head" :src="image"></image>
<view class="user"> <view class="user">
<view class="name"> <view class="name">
<image></image> <image></image>
<text>这是名字</text> <text class="u-line-1" style="width:130rpx">{{name}}</text>
</view> </view>
<view class="pingbi"> <view class="pingbi">
<image></image> <image></image>
@ -70,6 +70,7 @@ export default {
return { return {
} }
} },
props:['name','image']
} }
</script> </script>

View File

@ -19,11 +19,11 @@
</swiper> </swiper>
<view v-else style=" display: flex;flex-direction: column;height: calc(100vh - 88rpx);"> <view v-else style=" display: flex;flex-direction: column;height: calc(100vh - 88rpx);">
<view class="select"> <view class="select">
<view @click="sx(0)" data-type="xl">销量</view> <view @click="sx(0)" class="xz" data-type="xl">销量</view>
<view class="xz" @click="sx(1)"> <view class="xz" @click="sx(1)">
<text>价格</text> <text>价格</text>
<view class="jiage"> <view class="jiage">
<view class="top"></view> <view class="top topxz"></view>
<view class="bottom bottomxz"></view> <view class="bottom bottomxz"></view>
</view> </view>
</view> </view>

View File

@ -39,10 +39,10 @@
<u-swiper mode="dot" :list="zhiboImageSwiper" name="adv_code"></u-swiper> <u-swiper mode="dot" :list="zhiboImageSwiper" name="adv_code"></u-swiper>
<view class="list"> <view class="list">
<view> <view>
<zhiboItem v-for="item in 10"></zhiboItem> <zhiboItem v-for="item in tabLiveLists.filter((_, index) => !(index&1))" :key="item.live_id" :name="item.store_name" :image="item.cover_img"></zhiboItem>
</view> </view>
<view style="margin-left:20rpx"> <view style="margin-left:20rpx">
<zhiboItem v-for="item in 10"></zhiboItem> <zhiboItem v-for="item in tabLiveLists.filter((_, index) => index&1)" :key="item.live_id"></zhiboItem>
</view> </view>
</view> </view>
</view> </view>
@ -203,6 +203,7 @@
recommendList: [], // recommendList: [], //
indexImageSwiper: [], indexImageSwiper: [],
zhiboImageSwiper: [], zhiboImageSwiper: [],
tabLiveLists:[]
} }
}, },
components: { components: {
@ -222,6 +223,7 @@
tabLiveList(){ tabLiveList(){
this.$u.api.tabLiveList().then((res)=>{ this.$u.api.tabLiveList().then((res)=>{
console.log(res) console.log(res)
this.tabLiveLists = res.data
}) })
}, },
getSwiper() { getSwiper() {