|
|
@@ -55,7 +55,7 @@
|
|
|
<el-table-column prop="collectionName" label="藏品名称"> </el-table-column>
|
|
|
|
|
|
<el-table-column prop="num" label="藏品数量"> </el-table-column>
|
|
|
- <el-table-column prop="consume" label="是否消耗藏品">
|
|
|
+ <el-table-column prop="consume" label="消耗藏品">
|
|
|
<template v-slot="{ row }">
|
|
|
<el-tag type="success" v-if="row.consume">是</el-tag>
|
|
|
<el-tag type="info" v-else>否</el-tag>
|
|
|
@@ -64,6 +64,12 @@
|
|
|
<el-table-column prop="total" label="发行数量"> </el-table-column>
|
|
|
<el-table-column prop="stock" label="剩余数量"> </el-table-column>
|
|
|
<el-table-column prop="gasPrice" label="GAS费"></el-table-column>
|
|
|
+ <el-table-column prop="onShelf" label="上架">
|
|
|
+ <template v-slot="{ row }">
|
|
|
+ <el-tag type="success" v-if="row.onShelf">是</el-tag>
|
|
|
+ <el-tag type="info" v-else>否</el-tag>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="操作" align="center" fixed="right" width="120">
|
|
|
<template slot-scope="{ row }">
|
|
|
<el-button @click="editRow(row)" type="primary" size="mini" plain>详情</el-button>
|