|
@@ -30,6 +30,11 @@
|
|
|
<el-table-column label="分类名称" prop="name" width="200" />
|
|
<el-table-column label="分类名称" prop="name" width="200" />
|
|
|
<el-table-column label="排序" prop="sortNumber" width="100" />
|
|
<el-table-column label="排序" prop="sortNumber" width="100" />
|
|
|
<el-table-column label="备注说明" prop="remark" min-width="300" />
|
|
<el-table-column label="备注说明" prop="remark" min-width="300" />
|
|
|
|
|
+ <el-table-column label="展示状态" prop="isShow" width="100" >
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ {{scope.row.isShow === 1 ? '展示' : '不展示'}}
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="创建时间" prop="createdTime" :formatter="dateTimeFormatter" width="180" />
|
|
<el-table-column label="创建时间" prop="createdTime" :formatter="dateTimeFormatter" width="180" />
|
|
|
<el-table-column label="操作" width="150" fixed="right">
|
|
<el-table-column label="操作" width="150" fixed="right">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|