|
@ -65,6 +65,7 @@ |
|
|
<el-table-column prop="orderNum" label="排序" width="60"></el-table-column> |
|
|
<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="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="component" label="组件路径" :show-overflow-tooltip="true"></el-table-column> |
|
|
|
|
|
|
|
|
<el-table-column prop="status" label="状态" width="80"> |
|
|
<el-table-column prop="status" label="状态" width="80"> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<dict-tag :options="dict.type.sys_normal_disable" :value="scope.row.status"/> |
|
|
<dict-tag :options="dict.type.sys_normal_disable" :value="scope.row.status"/> |
|
@ -77,7 +78,7 @@ |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width"> |
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width"> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<el-button |
|
|
<el-button |
|
|
size="mini" |
|
|
size="mini" |
|
|
type="text" |
|
|
type="text" |
|
|
icon="el-icon-edit" |
|
|
icon="el-icon-edit" |
|
@ -170,6 +171,18 @@ |
|
|
<el-radio label="0">是</el-radio> |
|
|
<el-radio label="0">是</el-radio> |
|
|
<el-radio label="1">否</el-radio> |
|
|
<el-radio label="1">否</el-radio> |
|
|
</el-radio-group> |
|
|
</el-radio-group> |
|
|
|
|
|
|
|
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
|
|
<el-form-item label="是否dc" prop="distinguish"> |
|
|
|
|
|
<span slot="label"> |
|
|
|
|
|
是否dc后端 |
|
|
|
|
|
</span> |
|
|
|
|
|
<el-radio-group v-model="form.distinguish"> |
|
|
|
|
|
<el-radio :label=0>是</el-radio> |
|
|
|
|
|
<el-radio :label=1>否</el-radio> |
|
|
|
|
|
</el-radio-group> |
|
|
|
|
|
|
|
|
</el-form-item> |
|
|
</el-form-item> |
|
|
</el-col> |
|
|
</el-col> |
|
|
<el-col :span="12" v-if="form.menuType != 'F'"> |
|
|
<el-col :span="12" v-if="form.menuType != 'F'"> |
|
@ -376,7 +389,8 @@ export default { |
|
|
isFrame: "1", |
|
|
isFrame: "1", |
|
|
isCache: "0", |
|
|
isCache: "0", |
|
|
visible: "0", |
|
|
visible: "0", |
|
|
status: "0" |
|
|
status: "0", |
|
|
|
|
|
distinguish:0, |
|
|
}; |
|
|
}; |
|
|
this.resetForm("form"); |
|
|
this.resetForm("form"); |
|
|
}, |
|
|
}, |
|
|