Merge pull request 'yangws' (#414) from yangws into main

Reviewed-on: #414
This commit is contained in:
yangws 2024-11-20 17:07:22 +08:00
commit 35d07291d3
1 changed files with 115 additions and 4 deletions

View File

@ -19,7 +19,7 @@
</div> </div>
<div class="list-content"> <div class="list-content">
<div class="list-container" v-loading="loading"> <div class="list-container" v-loading="loading">
<div v-for="(item, index) in experimentList" :key="index" class="content"> <div v-for="(item, index) in testList" :key="index" class="content">
<div class="content-list"> <div class="content-list">
<!-- 封面 --> <!-- 封面 -->
<el-image style="width: 100%;border-radius: 8px;" :src="item.coverPic" fit="contain" @click="chooseVedio(item)"/> <el-image style="width: 100%;border-radius: 8px;" :src="item.coverPic" fit="contain" @click="chooseVedio(item)"/>
@ -79,7 +79,116 @@ const loading = ref(false)
// //
const experimentList = ref([]) const experimentList = ref([])
const testList = ref([
{
fileName: '1',
fileShowName: '1',
coverPic: 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg',
nums: 100,
},
{
fileName: '1',
fileShowName: '1',
coverPic: 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg',
nums: 100,
},
{
fileName: '1',
fileShowName: '1',
coverPic: 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg',
nums: 100,
},
{
fileName: '1',
fileShowName: '1',
coverPic: 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg',
nums: 100,
},
{
fileName: '1',
fileShowName: '1',
coverPic: 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg',
nums: 100,
},
{
fileName: '1',
fileShowName: '1',
coverPic: 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg',
nums: 100,
},
{
fileName: '1',
fileShowName: '1',
coverPic: 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg',
nums: 100,
},
{
fileName: '1',
fileShowName: '1',
coverPic: 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg',
nums: 100,
},
{
fileName: '1',
fileShowName: '1',
coverPic: 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg',
nums: 100,
},
{
fileName: '1',
fileShowName: '1',
coverPic: 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg',
nums: 100,
},
{
fileName: '1',
fileShowName: '1',
coverPic: 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg',
nums: 100,
},
{
fileName: '1',
fileShowName: '1',
coverPic: 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg',
nums: 100,
},
{
fileName: '1',
fileShowName: '1',
coverPic: 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg',
nums: 100,
},
{
fileName: '1',
fileShowName: '1',
coverPic: 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg',
nums: 100,
},
{
fileName: '1',
fileShowName: '1',
coverPic: 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg',
nums: 100,
},
{
fileName: '1',
fileShowName: '1',
coverPic: 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg',
nums: 100,
},
{
fileName: '1',
fileShowName: '1',
coverPic: 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg',
nums: 100,
},
{
fileName: '1',
fileShowName: '1',
coverPic: 'https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg',
nums: 100,
},
])
// //
const query = ref({ const query = ref({
textbookId: '', textbookId: '',
@ -180,7 +289,10 @@ const chooseVedio = (item) => {
width: calc(20%); width: calc(20%);
cursor: pointer; cursor: pointer;
transition: all 0.3s ease; transition: all 0.3s ease;
padding: 5px padding: 5px;
display: flex;
flex-direction: column;
justify-content: space-between;
} }
.content:hover { .content:hover {
@ -188,7 +300,6 @@ const chooseVedio = (item) => {
// box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.15); // box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.15);
} }
.content-list{ .content-list{
} }
.item-content { .item-content {