【bug】ie不显示文件名称

This commit is contained in:
fengachen
2021-11-05 15:47:40 +08:00
parent 519c091d61
commit 60bf7ebc15
2 changed files with 7 additions and 7 deletions
+4 -4
View File
@@ -46,7 +46,7 @@
</a-col>
<a-col :span="12">
<label>会议通知</label>
<span><preview-file style="width: 80%" :file-id="model.meetingFiles"></preview-file></span>
<span style="width: 100%;"><preview-file style="width: 80%" :file-id="model.meetingFiles"></preview-file></span>
</a-col>
</a-row>
<a-row :gutter="24" class="flex-col">
@@ -163,7 +163,7 @@
</a-col>
<a-col :span="12" v-show="situationInfo.speechPpt">
<label>演讲ppt</label>
<span><preview-file style="width: 80%" :file-id="situationInfo.speechPpt"></preview-file></span>
<span style="width: 100%;"><preview-file style="width: 80%" :file-id="situationInfo.speechPpt"></preview-file></span>
</a-col>
</a-row>
<a-row :gutter="24" class="flex-col">
@@ -267,7 +267,7 @@
</a-col>
<a-col :span="12" v-show="situationInfo.speechPpt">
<label>演讲ppt</label>
<span><preview-file style="width: 80%" :file-id="situationInfo.speechPpt"></preview-file></span>
<span style="width: 100%;"><preview-file style="width: 80%" :file-id="situationInfo.speechPpt"></preview-file></span>
</a-col>
</a-row>
<a-row :gutter="24" class="flex-col">
@@ -422,7 +422,7 @@
<a-row :gutter="24" class="flex-col">
<a-col :span="12">
<label>会议资料</label>
<span><preview-file :file-id="model.meetingData" :is-meeting-data-bool="true"></preview-file></span>
<span style="width: 100%"><preview-file style="width: 80%" :file-id="model.meetingData" :is-meeting-data-bool="true"></preview-file></span>
</a-col>
</a-row>
</section>
+3 -3
View File
@@ -56,14 +56,14 @@
</a-col>
<a-col :span="12" v-if="basicInfo.chargeWay === 3" class="detail-item">
<label>收费通知</label>
<span><preview-file :file-id="basicInfo.chargeNoticeId"></preview-file></span>
<span style="width: 100%;"><preview-file style="width: 80%" :file-id="basicInfo.chargeNoticeId"></preview-file></span>
</a-col>
</a-row>
<a-row :gutter="24" v-if="basicInfo.files">
<a-col class="detail-item">
<label>项目资料</label>
<span>
<preview-file :file-id="basicInfo.files"></preview-file>
<span style="width: 100%;">
<preview-file style="width: 80%" :file-id="basicInfo.files"></preview-file>
</span>
</a-col>
</a-row>