Browse Source

大屏显示样式调整

master
21819 2 years ago
parent
commit
221bff99ae
  1. 7
      src/views/datascreen/details.vue

7
src/views/datascreen/details.vue

@ -316,7 +316,10 @@
<span class="info-label">材料</span>
</el-col>
<el-col :span="21">
<div class="img-box" v-for="(item, index) in formData.verifyAttachments" :key="index" :style="{ backgroundImage: `url(${VITE_API_URL}/api/file/stream/${item.filepath})`}"></div>
<!-- <div class="img-box" v-for="(item, index) in formData.verifyAttachments" :key="index" :style="{ backgroundImage: `url(${VITE_API_URL}/api/file/stream/${item.filepath})`}"> -->
<div class="img-box">
<FileList :files="formData.verifyAttachments" />
</div>
</el-col>
@ -514,6 +517,7 @@ const getDetail = async (row: Record<string, any>) => {
})
console.log(mailDetail)
setFormData(mailDetail)
console.log(formData)
console.log(verifyFollowupPolice)
} catch (error) {
}
@ -677,5 +681,6 @@ border-top: 1px solid #4E8FFF; /* 设置上边框为1px实线,颜色为黑色
width: 50px;
height: 50px;
margin-left: 20px;
margin-bottom: 20px;
}
</style>

Loading…
Cancel
Save