|
@@ -65,11 +65,16 @@
|
|
|
<el-table-column prop="orderNum" label="排序" width="60"></el-table-column>
|
|
|
<el-table-column prop="perms" label="权限标识" :show-overflow-tooltip="true"></el-table-column>
|
|
|
<el-table-column prop="component" label="组件路径" :show-overflow-tooltip="true"></el-table-column>
|
|
|
- <el-table-column prop="status" label="状态" width="80">
|
|
|
+ <el-table-column prop="status" label="状态" align="center" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<dict-tag :options="dict.type.sys_normal_disable" :value="scope.row.status"/>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column prop="menuScope" label="菜单范围" align="center" width="100">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ scope.row.menuScope == 1? "后台": "窗口" }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="创建时间" align="center" prop="createTime">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.createTime) }}</span>
|