|
@@ -1,13 +1,13 @@
|
|
|
<template>
|
|
|
<div class="saga-report">
|
|
|
<section class="saga-report-section">
|
|
|
- <el-row :gutter="20" v-for="(item,index) in errorReport" style="margin-bottom: 10px">
|
|
|
+ <el-row :gutter="20" v-for="(item,index) in errorReport" :key="item.Id" style="margin-bottom: 10px">
|
|
|
<el-col :span="12">
|
|
|
<h3>{{index +1}}.{{item.Name}}</h3>
|
|
|
<div class="problem-description">{{item.Note}}</div>
|
|
|
<h5>问题创建人:{{item.Author}}</h5>
|
|
|
</el-col>
|
|
|
- <el-col :span="12" v-if="item.Pic" v-for="pic in item.Pic">
|
|
|
+ <el-col :span="12" v-show="item.Pic" v-for="pic in item.Pic" :key="pic.Key">
|
|
|
<h4 style="font-size: 14px">现场照片</h4>
|
|
|
<el-image
|
|
|
:src="`/image-service/common/image_get?systemId=dataPlatform&key=${pic.Key}`"
|
|
@@ -34,7 +34,7 @@
|
|
|
|
|
|
},
|
|
|
created() {
|
|
|
- console.log(this.errorReport)
|
|
|
+ console.log("lisa gagagg",this.errorReport)
|
|
|
}
|
|
|
|
|
|
}
|