123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- <template>
- <view class="margin-bottom zaiui-video-list-box" :class="show?'show':''">
- <view class="flex flex-wrap">
- <view class="basis-df padding-sm padding-right-xs">
- <block v-for="(item,index) in list_data" :key="index" v-if="index%2==0">
- <view class="margin-bottom-sm img-itme" @tap="listTap(item,index)">
- <!--背景图-->
- <image class="cover-img" :src="item.cover_img" lazy-load mode="widthFix"/>
-
- <!--标题-->
- <view class="text-cut video-title" v-if="item.title">{{item.title}}</view>
-
- <!--用户信息-->
- <view class="video-user-info-box" v-if="item.name">
- <view class="user-box">
- <!--头像-->
- <image :src="item.avatar" mode="aspectFill" lazy-load class="cu-avatar sm round" v-if="item.avatar"/>
- <!--名称-->
- <view class="text-cut text-sm user-name">{{item.name}}</view>
- <!--点赞-->
- <view class="text-sm text-right video-appreciate" v-if="item.appreciate">
- <text class="cuIcon-appreciate"/>
- <text class="margin-left-xs">{{item.appreciate}}</text>
- </view>
- </view>
- </view>
- </view>
- </block>
- </view>
- <view class="basis-df padding-sm padding-left-xs">
- <block v-for="(item,index) in list_data" :key="index" v-if="index%2!=0">
- <view class="margin-bottom-sm img-itme" @tap="listTap(item,index)">
- <!--背景图-->
- <image class="cover-img" :src="item.cover_img" lazy-load mode="widthFix"/>
-
- <!--标题-->
- <view class="text-cut video-title" v-if="item.title">{{item.title}}</view>
-
- <!--用户信息-->
- <view class="video-user-info-box" v-if="item.name">
- <view class="user-box">
- <!--头像-->
- <image :src="item.avatar" mode="aspectFill" lazy-load class="cu-avatar sm round" v-if="item.avatar"/>
- <!--名称-->
- <view class="text-cut text-sm user-name">{{item.name}}</view>
- <!--点赞-->
- <view class="text-sm text-right video-appreciate" v-if="item.appreciate">
- <text class="cuIcon-appreciate"/>
- <text class="margin-left-xs">{{item.appreciate}}</text>
- </view>
- </view>
- </view>
- </view>
- </block>
- </view>
- </view>
- </view>
- </template>
- <script>
- import _tool from '@/static/zaiui/util/tools.js';
- export default {
- name: 'video-list',
- props: {
- list_data: {
- type: Array,
- default: () => {
- return []
- }
- },
- show: {
- type: Boolean,
- default: true
- }
- },
- methods: {
- listTap(data,index) {
- this.$emit('listTap', {
- data,
- index
- });
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .zaiui-video-list-box {
- position: relative;
- width: 100%;
- display: none;
- .img-itme {
- position: relative;
- width: 100%;
- .cover-img {
- width: 100%;
- border-radius: 3%;
- }
- .video-title {
- position: absolute;
- bottom: 72.72upx;
- left: 0;
- width: 100%;
- padding: 0 18.18upx;
- color: #FFFFFF;
- }
- .video-user-info-box {
- position: absolute;
- bottom: 18.18upx;
- left: 0;
- width: 100%;
- color: #FFFFFF;
- .user-box {
- position: relative;
- width: 100%;
- .cu-avatar {
- margin-left: 18.18upx;
- width: 43.63upx;
- height: 43.63upx;
- }
- .user-name {
- position: absolute;
- top: 3.63upx;
- width: 145.45upx;
- left: 72.72upx;
- }
- .video-appreciate {
- position: absolute;
- top: 3.63upx;
- right: 18.18upx;
- }
- }
- }
- }
- }
- .zaiui-video-list-box.show {
- display: block;
- }
- </style>
|