|
@@ -69,8 +69,21 @@
|
|
|
<video controls :src="item.file_url" width="100%" height="140px"></video>
|
|
|
</template>
|
|
|
|
|
|
- <p class="name">{{ item.name }}</p>
|
|
|
- <b class="label">{{ item.label }}</b>
|
|
|
+ <el-popover placement="bottom" width="300" trigger="hover">
|
|
|
+ <div class="sources-info">
|
|
|
+ <p class="name">名称:{{ item.name }}</p>
|
|
|
+ <p class="label">标签:{{ item.label }}</p>
|
|
|
+ <p class="name">简介:{{ item.intro }}</p>
|
|
|
+ <p class="label">修改时间:{{ item.last_modify_time }}</p>
|
|
|
+ <p class="label">文件大小:{{ item.file_size_desc }}</p>
|
|
|
+ </div>
|
|
|
+ <template #reference>
|
|
|
+ <div class="sources-info">
|
|
|
+ <p class="name">{{ item.name }}</p>
|
|
|
+ <b class="label">{{ item.label }}</b>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-popover>
|
|
|
</div>
|
|
|
</div>
|
|
|
<PaginationPage ref="pagination" :total="total" @getList="queryList" />
|
|
@@ -635,6 +648,7 @@ export default {
|
|
|
.label {
|
|
|
margin: 5px 0;
|
|
|
font-size: 14px;
|
|
|
+ font-weight: normal;
|
|
|
line-height: 1.3;
|
|
|
}
|
|
|
|