|
@@ -1,14 +1,14 @@
|
|
|
<template>
|
|
|
<div class="saga-report">
|
|
|
<section class="saga-report-section">
|
|
|
- <el-row :gutter="20" v-for="(item,index) in errorReport" >
|
|
|
+ <el-row :gutter="20" v-for="(item,index) in errorReport" style="margin-bottom: 10px">
|
|
|
<el-col :span="12">
|
|
|
- <h3>{{index +1}},{{item.Name}}</h3>
|
|
|
+ <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">
|
|
|
- <h4>现场照片</h4>
|
|
|
+ <h4 style="font-size: 14px">现场照片</h4>
|
|
|
<el-image
|
|
|
:src="`/image-service/common/image_get?systemId=dataPlatform&key=${pic.Key}`"
|
|
|
style="width:100%;height: 300px" :alt="item.Name"
|