fix: youhua

This commit is contained in:
zzc
2026-02-05 16:06:31 +08:00
parent 1867d5aa55
commit 61bf50afc7
5 changed files with 34 additions and 11 deletions

View File

@@ -32,7 +32,7 @@
<el-image
fit="cover"
:preview-src-list="[scope.row?.detail?.imageUrl]"
:src="scope.row?.detail?.imageUrl"
:src="getThumbUrl(scope.row?.detail?.imageUrl)"
style="width: 50px; height: 50px"
/>
</el-tooltip>
@@ -74,7 +74,7 @@
<el-table-column align="left" label="作者信息" show-overflow-tooltip>
<template #default="{ row }">
<div class="author-cell">
<img alt="avatar" class="author-avatar" :src="row?.fromUser?.avatar" />
<img alt="avatar" class="author-avatar" :src="getThumbUrl(row?.fromUser?.avatar)" />
<div class="author-meta">
<div>
<strong>id</strong>
@@ -115,7 +115,7 @@
<script>
import { getShareList } from '@/api/spring/user'
import { formatTime } from '@/utils'
import { getSceneName } from '@/utils/blessing'
import { getSceneName, getThumbUrl } from '@/utils/blessing'
export default {
name: 'GenerateRecord',
@@ -147,6 +147,7 @@
methods: {
formatTime,
getSceneName,
getThumbUrl,
setSelectRows(val) {
this.selectRows = val
},