42 lines
770 B
Vue
Raw Normal View History

2022-10-17 10:13:22 +08:00
<template>
2022-12-14 18:31:34 +08:00
<Card title="当前模型">
2022-10-17 10:13:22 +08:00
<div class="videos">
<div class="video" v-for="i in 6" :key="i"><p>2022-08-11</p></div>
</div>
</Card>
</template>
<script>
import Card from '../components/Card.vue'
export default {
components: { Card }
}
</script>
<style lang="less" scoped>
.videos {
box-sizing: border-box;
padding-top: 10px;
width: 100%;
height: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
.video {
2022-10-17 10:13:22 +08:00
width: 48%;
height: 29%;
// border: 1px solid skyblue;
background-image: url(../assets/images/common/bgc_small.png);
background-repeat: no-repeat;
background-size: 100%;
}
p{
font-size: 14px;
color: #fff;
opacity: 0.7;
margin: 2px 2px;
2022-10-17 10:13:22 +08:00
}
}
</style>