|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
|
<div class="eta-menu-config-wrap">
|
|
|
<div class="menu-top">
|
|
|
- <el-button type="primary" @click="modifyMenu('add',{})">添加菜单</el-button>
|
|
|
+ <el-button type="primary" @click="handleModifyMenu('add',{})">添加菜单</el-button>
|
|
|
<el-input placeholder="请输入菜单名称" prefix-icon="el-icon-search" clearable
|
|
|
v-model="Keyword" @input="getMenuData"></el-input>
|
|
|
</div>
|
|
@@ -37,8 +37,8 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center" prop="操作">
|
|
|
<template slot-scope="{row}">
|
|
|
- <el-button type="text" @click="modifyMenu('addNext',row)">添加子项</el-button>
|
|
|
- <el-button type="text" @click="modifyMenu('edit',row)">编辑</el-button>
|
|
|
+ <el-button type="text" @click="handleModifyMenu('addNext',row)">添加子项</el-button>
|
|
|
+ <el-button type="text" @click="handleModifyMenu('edit',row)">编辑</el-button>
|
|
|
<el-button type="text" style="color:#FF0000;" @click="deleteMenu(row)">删除</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -49,6 +49,8 @@
|
|
|
:formData="formData"
|
|
|
:etaMenu="tableData"
|
|
|
:openType="openType"
|
|
|
+ @add="(params)=>{modifyMenu(params,'addMenu')}"
|
|
|
+ @edit="(params)=>{modifyMenu(params,'editMenu')}"
|
|
|
@close="()=>{formData = {};isShowMenuDialog = false;}"
|
|
|
/>
|
|
|
</div>
|
|
@@ -103,7 +105,7 @@ export default {
|
|
|
}
|
|
|
return data
|
|
|
},
|
|
|
- modifyMenu(type, data) {
|
|
|
+ handleModifyMenu(type, data) {
|
|
|
if (type === 'addNext') {
|
|
|
this.formData.ParentId = data.MenuId;
|
|
|
this.formData.treeLevel = data.treeLevel+1
|
|
@@ -118,8 +120,55 @@ export default {
|
|
|
this.isShowMenuDialog = true;
|
|
|
},
|
|
|
deleteMenu(data){
|
|
|
- console.log('scope',data)
|
|
|
- }
|
|
|
+ this.$confirm(`删除后不可恢复,确认删除该${data.MenuType===0?'菜单及子菜单吗':'按钮吗'}?`,'提示',{
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ }).then(()=>{
|
|
|
+ menuConfigInterface.removeMenu({MenuId:data.MenuId}).then(res=>{
|
|
|
+ if(res.Ret!==200) return
|
|
|
+ this.$message.success('删除成功')
|
|
|
+ this.getMenuData()
|
|
|
+ })
|
|
|
+ }).catch(()=>{})
|
|
|
+
|
|
|
+ },
|
|
|
+ modifyMenu(params,type){
|
|
|
+ let InterfaceParams = {}
|
|
|
+ if(params.MenuType===0){
|
|
|
+ const {ParentId,MenuType,Name,IconPath,Sort,Path,Component,Hidden} = params
|
|
|
+ InterfaceParams = {
|
|
|
+ ParentId:ParentId===-1?0:ParentId,
|
|
|
+ MenuType,
|
|
|
+ Name,
|
|
|
+ IconPath,
|
|
|
+ Sort,
|
|
|
+ Path,
|
|
|
+ Component,
|
|
|
+ Hidden
|
|
|
+ }
|
|
|
+ }else{
|
|
|
+ const {ParentId,MenuType,Name,Sort,Hidden,ButtonCode} = params
|
|
|
+ InterfaceParams = {
|
|
|
+ ParentId:ParentId===-1?0:ParentId,
|
|
|
+ MenuType,
|
|
|
+ Name,
|
|
|
+ Sort,
|
|
|
+ Hidden,
|
|
|
+ ButtonCode
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if(type==='editMenu'){
|
|
|
+ InterfaceParams = {...{MenuId:params.MenuId},...InterfaceParams}
|
|
|
+ }
|
|
|
+ menuConfigInterface[type](InterfaceParams).then(res=>{
|
|
|
+ if(res.Ret!==200) return
|
|
|
+ this.$message.success(`${type==='addMenu'?'添加':'编辑'}成功`)
|
|
|
+ this.getMenuData()
|
|
|
+ this.isShowMenuDialog = false
|
|
|
+ })
|
|
|
+ },
|
|
|
+ editMenu(params){}
|
|
|
},
|
|
|
mounted() {
|
|
|
this.getMenuData();
|