|
|
@@ -49,12 +49,14 @@
|
|
|
<el-table-column prop="remark" label="备注" show-overflow-tooltip> </el-table-column>
|
|
|
<el-table-column prop="limited" label="指定藏品">
|
|
|
<template slot-scope="{ row }">
|
|
|
- <el-tag :type="row.limited ? '' : 'info'">{{ row.limited }}</el-tag>
|
|
|
+ <el-tag v-if="row.limited" type="success">是</el-tag>
|
|
|
+ <el-tag v-else type="info">否</el-tag>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="needGas" label="需要支付GAS">
|
|
|
<template slot-scope="{ row }">
|
|
|
- <el-tag :type="row.needGas ? '' : 'info'">{{ row.needGas }}</el-tag>
|
|
|
+ <el-tag v-if="row.needGas" type="success">是</el-tag>
|
|
|
+ <el-tag v-else type="info">否</el-tag>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="expiration" label="到期时间"> </el-table-column>
|