统一商品分类标识与评价关联展示
This commit is contained in:
@@ -37,9 +37,20 @@
|
||||
</a-tag>
|
||||
</template>
|
||||
</a-table-column>
|
||||
<a-table-column title="系统标识" :width="120">
|
||||
<a-table-column
|
||||
:title="definition.name === 'ec_category' ? '系统唯一标识' : '系统标识'"
|
||||
:width="definition.name === 'ec_category' ? 170 : 120"
|
||||
>
|
||||
<template #cell="{ record }">
|
||||
<IdentityText :value="String(record.identity)" display-text="复制标识" />
|
||||
<IdentityText
|
||||
v-if="definition.name === 'ec_category'"
|
||||
:value="String(record.identity)"
|
||||
/>
|
||||
<IdentityText
|
||||
v-else
|
||||
:value="String(record.identity)"
|
||||
display-text="复制标识"
|
||||
/>
|
||||
</template>
|
||||
</a-table-column>
|
||||
<a-table-column v-if="canEdit || canChangeStatus || canArchive" title="操作" :width="230" fixed="right">
|
||||
|
||||
Reference in New Issue
Block a user