添加菜单处理
This commit is contained in:
@@ -1,12 +1,29 @@
|
||||
export function setMenu(menuList) {
|
||||
if(menuList!=null && menuList.Count()>0)
|
||||
{
|
||||
export function setTreeMenu(menuList) {
|
||||
if (menuList != null && menuList.length > 0) {
|
||||
|
||||
}
|
||||
|
||||
//结果
|
||||
var res;
|
||||
//获取最小的parentId
|
||||
var minParentId = 0;
|
||||
//获取id=最小的parentId的菜单列表
|
||||
var menuList1=menuList.filter((item)=>{item.parentId==minParentId}) ;
|
||||
|
||||
menuList1.forEach(element=>{
|
||||
res.push(element)
|
||||
var children=menuList.filter((item)=>{item.parentId==element.id}) ;
|
||||
if (children.length > 0) {
|
||||
setTreeChildren(menuList, children,element)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
function setTreeChildren(menuList)
|
||||
{
|
||||
|
||||
function setTreeChildren(menuList, childrenList,model) {
|
||||
childrenList.forEach(element => {
|
||||
model.Childs.push(element);
|
||||
var childrenList2=menuList.filter((item)=>{item.parentId==element.id}) ;
|
||||
if (childrenList2.length > 0) {
|
||||
setTreeChildren(menuList, childrenList2,element)
|
||||
}
|
||||
});
|
||||
}
|
||||
71
Yi.Vue2.x/src/util/objctHandle,js
Normal file
71
Yi.Vue2.x/src/util/objctHandle,js
Normal file
@@ -0,0 +1,71 @@
|
||||
//深拷贝
|
||||
export function deepCopy(obj) {
|
||||
var a = JSON.stringify(obj);
|
||||
var newobj = JSON.parse(a);
|
||||
return newobj;
|
||||
}
|
||||
|
||||
|
||||
//转换数据,0是相等,1是模糊查询
|
||||
export function objctToDic(object, isByPage) {
|
||||
if (isByPage) {
|
||||
var paramPage = {
|
||||
"index": object.pageIndex,
|
||||
"size": object.pageSize,
|
||||
"parameters": [],
|
||||
"orderBys": []
|
||||
}
|
||||
|
||||
var newData = deepCopy(object);
|
||||
delete newData.pageIndex;
|
||||
delete newData.pageSize;
|
||||
|
||||
var newList = [Object.keys(newData).map(val => {
|
||||
return {
|
||||
key: val,
|
||||
value: object[val],
|
||||
type: 1
|
||||
}
|
||||
})]
|
||||
|
||||
//过滤封装
|
||||
newList[0].forEach((item, index) => {
|
||||
if(item.value.length>0)
|
||||
{
|
||||
if(item.key=='isDeleted')
|
||||
{
|
||||
item.type=0;
|
||||
}
|
||||
paramPage.parameters.push(item);
|
||||
}
|
||||
});
|
||||
|
||||
return paramPage;
|
||||
}
|
||||
else {
|
||||
var params = {
|
||||
"parameters": [],
|
||||
"orderBys": []
|
||||
}
|
||||
var thisList = [Object.keys(object).map(val => {
|
||||
return {
|
||||
key: val,
|
||||
value: object[val],
|
||||
type: 1
|
||||
}
|
||||
})]
|
||||
thisList[0].forEach((item, index) => {
|
||||
if(item.value.length>0)
|
||||
{
|
||||
if(item.key=='isDeleted')
|
||||
{
|
||||
item.type=0;
|
||||
}
|
||||
params.parameters.push(item);
|
||||
}
|
||||
});
|
||||
|
||||
return params;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user