Compare commits

..

2 Commits

Author SHA1 Message Date
NewName
7c1f4911d2 chore: 添加封面图片资源 2026-03-25 12:48:31 +08:00
NewName
87d1d88c74 fix(scada): 移除图片路径中的baseApi前缀,使用本地资源
图片路径改为直接使用本地资源文件,避免依赖baseApi前缀
2026-03-25 12:48:12 +08:00
2 changed files with 2 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

View File

@@ -7,7 +7,7 @@
<el-card class="card-wrap" :body-style="{ padding: '10px' }"> <el-card class="card-wrap" :body-style="{ padding: '10px' }">
<div class="img-wrap" @click="goToDetail(item)"> <div class="img-wrap" @click="goToDetail(item)">
<el-image style="width: 100%; height: 100%; border-radius: 5px" lazy <el-image style="width: 100%; height: 100%; border-radius: 5px" lazy
:src="baseApi + item.pageImage" fit="cover"></el-image> :src="item.pageImage" fit="cover"></el-image>
</div> </div>
<div class="tag-wrap"> <div class="tag-wrap">
<span>{{ item.pageResolution ? item.pageResolution : '未知' }}</span> <span>{{ item.pageResolution ? item.pageResolution : '未知' }}</span>
@@ -51,7 +51,7 @@ export default {
"isShare": null, "isShare": null,
"shareUrl": null, "shareUrl": null,
"sharePass": null, "sharePass": null,
"pageImage": "/profile/upload/2026/03/23/11冻干3_1 (1)_20260323173148A001.png", "pageImage": require("../../../assets/picture/fengmian.png"),
"tenantId": null, "tenantId": null,
"tenantName": null, "tenantName": null,
"delFlag": 0, "delFlag": 0,