This commit is contained in:
2025-08-22 17:29:41 +08:00
parent 58cb07d33f
commit 5a0a86fe4a
2 changed files with 4 additions and 4 deletions

View File

@@ -65,7 +65,7 @@
<image
v-for="(img, idx) in realImages"
:key="idx"
:src="img"
:src="img.imagePath"
mode="aspectFill"
class="preview-image"
@click="previewImage(idx)"
@@ -142,7 +142,7 @@ export default {
async loadEevetInfo() {
let res = await this.$u.api.getWarnEventInfo({}, this.warnInfo.id);
if (res.code == "200") {
this.realImages = res.data
}
this.loading = false;
},