Browse Source

文件收集完整性

duy 1 month ago
parent
commit
cc8981dc6d
1 changed files with 11 additions and 0 deletions
  1. 11 0
      src/views/file/collection.vue

+ 11 - 0
src/views/file/collection.vue

@@ -110,6 +110,17 @@
                     </el-tag>
                 </template>
                 <template #fileName="{ row }">
+                    <!-- 资料是否完整 -->
+                    <div v-if="row.checkStatus > 0" class="inline-block text-red">
+                        <el-tooltip
+                            class="box-item"
+                            effect="light"
+                            content="文件不完整"
+                            placement="top"
+                        >
+                            <HcIcon name="error-warning" ui="text-xl" />
+                        </el-tooltip>
+                    </div>
                     <HcIcon v-if="row.isLock === 1" name="lock" style=" color:red;font-weight: bold;" />  <HcIcon v-else name="lock-unlock" style=" color:green;font-weight: bold;" />
                     <span class="text-link" @click="tableRowName(row)">{{ row?.fileName }}</span>
                 </template>