|
@ -82,7 +82,7 @@ |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<!-- 添加或修改菜单对话框 --> |
|
|
<!-- 添加或修改菜单对话框 --> |
|
|
<el-dialog :title="title" :visible.sync="open" width="680px" append-to-body> |
|
|
<el-dialog :close-on-click-modal="false" :title="title" :visible.sync="open" width="680px" append-to-body> |
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="100px"> |
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="100px"> |
|
|
<el-row> |
|
|
<el-row> |
|
|
<el-col :span="24"> |
|
|
<el-col :span="24"> |
|
@ -222,6 +222,17 @@ |
|
|
</el-radio-group> |
|
|
</el-radio-group> |
|
|
</el-form-item> |
|
|
</el-form-item> |
|
|
</el-col> |
|
|
</el-col> |
|
|
|
|
|
<el-col :span="12"> |
|
|
|
|
|
<el-form-item label="菜单别名"> |
|
|
|
|
|
<span slot="label"> |
|
|
|
|
|
<el-tooltip content="若定义, 则使用该值作为彩蛋名称" placement="top"> |
|
|
|
|
|
<i class="el-icon-question"></i> |
|
|
|
|
|
</el-tooltip> |
|
|
|
|
|
菜单别名 |
|
|
|
|
|
</span> |
|
|
|
|
|
<el-input v-model="form.sideBarTitle" /> |
|
|
|
|
|
</el-form-item> |
|
|
|
|
|
</el-col> |
|
|
</el-row> |
|
|
</el-row> |
|
|
</el-form> |
|
|
</el-form> |
|
|
<div slot="footer" class="dialog-footer"> |
|
|
<div slot="footer" class="dialog-footer"> |
|
@ -334,7 +345,8 @@ export default { |
|
|
isFrame: "1", |
|
|
isFrame: "1", |
|
|
isCache: "0", |
|
|
isCache: "0", |
|
|
visible: "0", |
|
|
visible: "0", |
|
|
status: "0" |
|
|
status: "0", |
|
|
|
|
|
sideBarTitle: undefined, |
|
|
}; |
|
|
}; |
|
|
this.resetForm("form"); |
|
|
this.resetForm("form"); |
|
|
}, |
|
|
}, |
|
|