Commit 1ec53d30 authored by yaya's avatar yaya

feat: 用户藏品添加是否删除展示

parent ddec2a2f
......@@ -38,6 +38,7 @@
element-loading-text="正在查询中..."
border
fit
height="700"
highlight-current-row
@selection-change="handleSelectionChange">
<el-table-column
......@@ -91,6 +92,11 @@
<span class="tooltip-span">{{ `${scope.row.statusName || '-'}` }}</span>
</template>
</el-table-column>
<el-table-column align="center" min-width="100px" prop="isDeleted" label="是否删除">
<template slot-scope="scope">
<span class="tooltip-span">{{ `${scope.row.isDeleted ? '是' : '否'}` }}</span>
</template>
</el-table-column>
<el-table-column align="center" label="操作" width="260">
<template slot-scope="scope">
<el-button
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment