|
|
@@ -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>
|