| | |
| | | <el-table-column prop="sort" label="排序"></el-table-column> |
| | | <el-table-column prop="flag" label="活动状态" > |
| | | <template slot-scope="scope"> |
| | | <span v-if="scope.row.flag === '1'">未开始</span> |
| | | <span v-else-if="scope.row.flag === '2'">已开始</span> |
| | | <span v-else-if="scope.row.flag === '3'">已结束</span> |
| | | <span v-if="scope.row.flag === 1">未开始</span> |
| | | <span v-else-if="scope.row.flag === 2">已开始</span> |
| | | <span v-else-if="scope.row.flag === 3">已结束</span> |
| | | <span v-else>未知类型</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="status" label="可售状态"> |
| | | <template slot-scope="scope"> |
| | | <span v-if="scope.row.status === '1'">已上架</span> |
| | | <span v-else-if="scope.row.status === '2'">已下架</span> |
| | | <span v-else-if="scope.row.status === '3'">已删除</span> |
| | | <span v-if="scope.row.status === 1">已上架</span> |
| | | <span v-else-if="scope.row.status === 2">已下架</span> |
| | | <span v-else-if="scope.row.status === 3">已删除</span> |
| | | <span v-else>未知类型</span> |
| | | </template> |
| | | </el-table-column> |