|
@@ -95,8 +95,14 @@
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="other">评论时间: {{ item.create_time }}</el-col>
|
|
|
<el-col :span="24" class="other">内容: {{ item.content }}</el-col>
|
|
|
- <el-col :span="8" class="images" v-for="i in item.file" :key="i._id">
|
|
|
- <el-image :src="i.url || '../../assets/bglogin.jpg'" style="width: 5vw; height: 5vw; border-radius: 2px" mode="widthFix"></el-image>
|
|
|
+ <el-col :span="24" class="images">
|
|
|
+ <div v-for="i in item.file" :key="i._id">
|
|
|
+ <el-image
|
|
|
+ :src="i.url || '../../assets/bglogin.jpg'"
|
|
|
+ style="width: 5vw; height: 5vw; border-radius: 2px; margin-right: 5px"
|
|
|
+ mode="widthFix"
|
|
|
+ ></el-image>
|
|
|
+ </div>
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="button" v-if="item.status == '0'">
|
|
|
<el-button type="primary" @click="toExam(item, '1')">审核成功</el-button>
|
|
@@ -321,6 +327,9 @@ const toBack = () => {
|
|
|
margin: 5px 0;
|
|
|
font-size: 16px;
|
|
|
}
|
|
|
+ .images {
|
|
|
+ display: flex;
|
|
|
+ }
|
|
|
.button {
|
|
|
text-align: center;
|
|
|
}
|