|
@@ -29,6 +29,12 @@
|
|
|
<span class="status-danger" v-else>未设置</span>
|
|
<span class="status-danger" v-else>未设置</span>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
|
+ <el-table-column label="券ID" prop="certificate_id" width="150">
|
|
|
|
|
+ <template #default="scope">
|
|
|
|
|
+ <span v-if="scope.row.certificate_id">{{ scope.row.certificate_id }}</span>
|
|
|
|
|
+ <span class="status-danger" v-else>未设置</span>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="商品名称" prop="product_name" width="220">
|
|
<el-table-column label="商品名称" prop="product_name" width="220">
|
|
|
<template #default="scope">
|
|
<template #default="scope">
|
|
|
<span v-if="scope.row.product_name">{{ scope.row.product_name }}</span>
|
|
<span v-if="scope.row.product_name">{{ scope.row.product_name }}</span>
|