fix: title

This commit is contained in:
zzc
2026-02-05 18:59:48 +08:00
parent f524b4e00f
commit d50af82fb8
5 changed files with 374 additions and 1 deletions

View File

@@ -24,7 +24,12 @@
<el-table-column align="center" label="模版" width="100">
<template slot-scope="scope">
<el-tooltip class="item" :content="scope.row.id" effect="dark" placement="top">
<el-image fit="cover" :preview-src-list="[scope.row.imageUrl]" :src="scope.row.imageUrl" style="width: 50px; height: 50px" />
<el-image
fit="cover"
:preview-src-list="[scope.row.imageUrl]"
:src="getThumbUrl(scope.row.imageUrl)"
style="width: 50px; height: 50px"
/>
</el-tooltip>
</template>
</el-table-column>
@@ -64,6 +69,7 @@
<script>
import { doDelete, getList, toggleEnable, doMoveUp, doMoveDown } from '@/api/spring/blessing/template'
import { formatTime } from '@/utils'
import { getThumbUrl } from '@/utils/blessing'
import Edit from './components/AppManagementEdit'
export default {
@@ -99,6 +105,7 @@
clearTimeout(this.timeOutID)
},
methods: {
getThumbUrl,
setSelectRows(val) {
this.selectRows = val
},