|
|
@@ -9,12 +9,17 @@
|
|
|
</template>
|
|
|
|
|
|
<template #table-column-cover="{ scope }">
|
|
|
- <cl-avatar
|
|
|
- shape="square"
|
|
|
- :size="32"
|
|
|
- :src="scope.row.cover"
|
|
|
- :style="{ margin: 'auto' }"
|
|
|
- ></cl-avatar>
|
|
|
+ <!-- <cl-avatar shape="square" :size="32" :src="scope.row.cover" :style="{ margin: 'auto' }"></cl-avatar> -->
|
|
|
+
|
|
|
+ <el-popover placement="right" width="200" trigger="hover">
|
|
|
+ <div style="width:200px;height:200px;">
|
|
|
+ <img style="width:100%;height:100%;object-fit: cover;" :src="scope.row.bigCover" />
|
|
|
+ </div>
|
|
|
+ <div style="width:40px;" slot="reference">
|
|
|
+ <img style="width:100%;height:100%;object-fit: cover;border-radius:5px;" :src="scope.row.cover" />
|
|
|
+ </div>
|
|
|
+ </el-popover>
|
|
|
+
|
|
|
</template>
|
|
|
|
|
|
<template #table-column-name="{scope}">
|