2024.4.28

<template>
<view>
<view class="list grid col-3 align-center justify-center">
<block v-for="(item, index) in dataList" :key="index">
<view class="video">
<image :src="item.cover_url"></image>
</view>
</block>
</view>
</view>
</template>

<script>
export default {
props: {
dataList: {}
},
data() {
return {};
}
};
</script>

<style>
.list {
display: flex;
justify-content:space-between;
flex-wrap: wrap;
padding-bottom: 100rpx;
padding: 5px;
background: #161922;
box-sizing: border-box;
}
.video{
min-height: 400upx;
}
</style>

posted @ 2024-05-07 17:29  liuxuechao  阅读(0)  评论(0编辑  收藏  举报