|
|
@ -268,7 +268,9 @@ |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="字段标签" width="150" align="center" prop="fldClas"> |
|
|
|
<template #default="scope"> |
|
|
|
<el-tag v-for="item in JSON.parse(scope.row.fldClas)">{{item.tagName}}</el-tag> |
|
|
|
<template v-if="scope.row.fldClas && scope.row.fldClas !== ''"> |
|
|
|
<el-tag v-for="item in JSON.parse(scope.row.fldClas)">{{item.tagName}}</el-tag> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="字段空值率" align="center" prop="fldNullRate"> |
|
|
@ -277,8 +279,14 @@ |
|
|
|
<span v-else>{{scope.row.fldNullRate}}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="引用字典/标准" align="center" prop="suppUpdTime"></el-table-column> |
|
|
|
<el-table-column label="更新时间" align="center" prop="suppUpdTime"></el-table-column> |
|
|
|
<el-table-column label="引用字典/标准" align="center"></el-table-column> |
|
|
|
<el-table-column label="更新时间" align="center" prop="suppUpdTime" width="180"> |
|
|
|
<template #default="scope"> |
|
|
|
<template v-if="scope.row.suppUpdTime && scope.row.suppUpdTime !== ''"> |
|
|
|
<span>{{scope.row.suppUpdTime.replace("T"," ")}}</span> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
|
</div> |
|
|
|
</el-tab-pane> |
|
|
|