|
@@ -33,12 +33,13 @@
|
|
|
</template>
|
|
|
<template v-slot:tbList="scope">
|
|
|
<div v-if="scope.data.column.columnname == 'cover'">
|
|
|
- <el-image
|
|
|
+ <img style="width:100px;height:100px" :src="scope.data.column.data[scope.data.column.columnname] || require('@/assets/notify.png')" alt="">
|
|
|
+
|
|
|
+ <!-- <el-image
|
|
|
style="margin-top: 6px"
|
|
|
:src="scope.data.column.data[scope.data.column.columnname] || require('@/assets/notify.png')"
|
|
|
- lazy
|
|
|
fit="scale-down"
|
|
|
- ></el-image>
|
|
|
+ ></el-image> -->
|
|
|
</div>
|
|
|
<div v-else-if="scope.data.column.columnname == 'readstatus'">
|
|
|
<p :style="{'color':scope.data.column.data[scope.data.column.columnname] == '已读' ? '#cccccc' : '#FA8C16'}">{{scope.data.column.data[scope.data.column.columnname]}}</p>
|