|
8 | 8 | <!-- 由于此处菜单跟左侧列表一一对应所以不需要分页 pageSize默认999 -->
|
9 | 9 | <el-table :data="tableData" row-key="ID">
|
10 | 10 | <el-table-column align="left" label="ID" min-width="100" prop="ID" />
|
11 |
| - <el-table-column align="left" label="路由Name" show-overflow-tooltip min-width="160" prop="name" /> |
12 |
| - <el-table-column align="left" label="路由Path" show-overflow-tooltip min-width="160" prop="path" /> |
13 |
| - <el-table-column align="left" label="是否隐藏" min-width="100" prop="hidden"> |
14 |
| - <template #default="scope"> |
15 |
| - <span>{{ scope.row.hidden?"隐藏":"显示" }}</span> |
16 |
| - </template> |
17 |
| - </el-table-column> |
18 |
| - <el-table-column align="left" label="父节点" min-width="90" prop="parentId" /> |
19 |
| - <el-table-column align="left" label="排序" min-width="70" prop="sort" /> |
20 |
| - <el-table-column align="left" label="文件路径" min-width="360" prop="component" /> |
21 | 11 | <el-table-column align="left" label="展示名称" min-width="120" prop="authorityName">
|
22 | 12 | <template #default="scope">
|
23 | 13 | <span>{{ scope.row.meta.title }}</span>
|
|
33 | 23 | </div>
|
34 | 24 | </template>
|
35 | 25 | </el-table-column>
|
| 26 | + <el-table-column align="left" label="路由Name" show-overflow-tooltip min-width="160" prop="name" /> |
| 27 | + <el-table-column align="left" label="路由Path" show-overflow-tooltip min-width="160" prop="path" /> |
| 28 | + <el-table-column align="left" label="是否隐藏" min-width="100" prop="hidden"> |
| 29 | + <template #default="scope"> |
| 30 | + <span>{{ scope.row.hidden?"隐藏":"显示" }}</span> |
| 31 | + </template> |
| 32 | + </el-table-column> |
| 33 | + <el-table-column align="left" label="父节点" min-width="90" prop="parentId" /> |
| 34 | + <el-table-column align="left" label="排序" min-width="70" prop="sort" /> |
| 35 | + <el-table-column align="left" label="文件路径" min-width="360" prop="component" /> |
36 | 36 | <el-table-column align="left" fixed="right" label="操作" width="300">
|
37 | 37 | <template #default="scope">
|
38 | 38 | <el-button
|
|
0 commit comments