|
|
@@ -1,27 +1,33 @@
|
|
|
<template>
|
|
|
- <v-row>
|
|
|
- <v-col cols="3">
|
|
|
- <router-link :to="`/video/${video.articleEntity.id}`">
|
|
|
- <v-img :src="video.articleEntity.imgUrl" aspect-ratio="1.77" max-width="400" />
|
|
|
- </router-link>
|
|
|
- </v-col>
|
|
|
- <v-col>
|
|
|
- <v-row>
|
|
|
- <router-link :to="`/video/${video.articleEntity.id}`">
|
|
|
- <h3>{{ video.articleEntity.title }}</h3>
|
|
|
+ <div style="width: 320px">
|
|
|
+ <router-link :to="`/video/${videoInfo.videoId}`">
|
|
|
+ <div style="position: relative; width: 320px; height: 180px;">
|
|
|
+ <v-img
|
|
|
+ :src="videoInfo.coverUrl"
|
|
|
+ outlined
|
|
|
+ aspect-ratio="1.77"
|
|
|
+ />
|
|
|
+ <span style="position: absolute; bottom: 0; right: 0; color:red">{{ videoInfo.duration }}</span>
|
|
|
+ </div>
|
|
|
+ </router-link>
|
|
|
+ <v-row>
|
|
|
+ <v-col cols="2">
|
|
|
+ <router-link :to="`/u/${videoInfo.userId}`">
|
|
|
+ <v-avatar size="48">
|
|
|
+ <v-img :src="videoInfo.avatarUrl" />
|
|
|
+ </v-avatar>
|
|
|
</router-link>
|
|
|
- </v-row>
|
|
|
- <v-row style="color:#606060;fount-size:12px;">
|
|
|
- 播放时间: {{ TimeUtil.renderTime(video.playRecordingEntity.updateTime) }}
|
|
|
- </v-row>
|
|
|
- <v-row style="color:#606060;fount-size:12px;">
|
|
|
- 播放设备: {{ video.playRecordingEntity.ua }}
|
|
|
- </v-row>
|
|
|
- <v-row style="color:#606060;fount-size:12px;">
|
|
|
- {{ video.articleEntity.describes }}
|
|
|
- </v-row>
|
|
|
- </v-col>
|
|
|
- </v-row>
|
|
|
+ </v-col>
|
|
|
+ <v-col cols="10">
|
|
|
+ <p class="text-over" style="font-size: 15px; margin-bottom: 0px;color: black;">
|
|
|
+ <router-link :to="`/video/${videoInfo.videoId}`" style="color: black;"> {{ videoInfo.title }} </router-link>
|
|
|
+ </p>
|
|
|
+ <p style="font-size: 10px; color: #606060;">
|
|
|
+ <router-link :to="`/u/${videoInfo.userId}`"> {{ videoInfo.username }}</router-link>
|
|
|
+ </p>
|
|
|
+ </v-col>
|
|
|
+ </v-row>
|
|
|
+ </div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
@@ -44,5 +50,4 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<style>
|
|
|
-
|
|
|
</style>
|