NEZ-3070 fix:software asset列表编辑页面

This commit is contained in:
zhangyu
2023-08-24 10:18:49 +08:00
parent ca55d5d57a
commit 9d7a06c2b7
2 changed files with 21 additions and 8 deletions

View File

@@ -67,6 +67,9 @@
<i v-if="scope.row[item.prop].name" class="nz-icon nz-icon-override" style="visibility: hidden" @click="onCopy(scope.row[item.prop].name)" :title="$t('overall.copyText')"></i>
</div>
</template>
<template v-else-if="item.prop === 'type'">
{{scope.row.type ? scope.row.type.name : '-'}}
</template>
<span v-else-if="scope.row[item.prop]" :class="item.prop === 'remark'? 'el-table-remark':''">{{scope.row[item.prop]}}</span>
<span v-else>-</span>
</template>