| | |
| | | stripe |
| | | border |
| | | :header-cell-style="rowStyle" |
| | | :cell-style="rowStyle" |
| | | > |
| | | :cell-style="rowStyle"> |
| | | <el-table-column prop="name" label="品牌名称" min-width="100px"></el-table-column> |
| | | <el-table-column prop="imgurl" label="图标" min-width="100px"> |
| | | <template slot-scope="{row}"> |
| | |
| | | </el-table-column> |
| | | <el-table-column prop="categoryName" label="类型" min-width="100px"> |
| | | <template slot-scope="{row}"> |
| | | <span v-if="row.type == 0">自建</span> |
| | | <span v-else>拉取</span> |
| | | <span v-if="row.type == 0">自定义</span> |
| | | <span v-else>系统</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="sortnum" label="排序码(升序)" min-width="100px"></el-table-column> |
| | |
| | | type: '' |
| | | }, |
| | | typeList: [ |
| | | { name: '自建', id: 0 }, |
| | | { name: '拉取', id: 1 } |
| | | { name: '自定义', id: 0 }, |
| | | { name: '系统', id: 1 } |
| | | ] |
| | | } |
| | | }, |