|
|
@@ -50,7 +50,7 @@ namespace TVShoppingCallCenter_ZLJ.Controllers.System
|
|
50
|
50
|
var data = new
|
|
51
|
51
|
{
|
|
52
|
52
|
authorizeMenu = await GetMenuAsync(),
|
|
53
|
|
- authorizeButton = await this.GetMenuButtonAsync()
|
|
|
53
|
+ authorizeButton = await GetMenuButtonAsync()
|
|
54
|
54
|
};
|
|
55
|
55
|
return Content(data.ToJson());
|
|
56
|
56
|
}
|
|
|
@@ -111,7 +111,23 @@ namespace TVShoppingCallCenter_ZLJ.Controllers.System
|
|
111
|
111
|
{
|
|
112
|
112
|
var obj = new
|
|
113
|
113
|
{
|
|
114
|
|
- entity,
|
|
|
114
|
+ entity.F_Id,
|
|
|
115
|
+ entity.F_MenuName,
|
|
|
116
|
+ entity.F_MenuCode,
|
|
|
117
|
+ entity.F_ParentId,
|
|
|
118
|
+ entity.F_OptUrl,
|
|
|
119
|
+ entity.F_ImgUrl,
|
|
|
120
|
+ entity.F_State,
|
|
|
121
|
+ entity.F_Sort,
|
|
|
122
|
+ entity.F_IsMenu,
|
|
|
123
|
+ entity.F_Target,
|
|
|
124
|
+ entity.F_Remark,
|
|
|
125
|
+ entity.F_CreateBy,
|
|
|
126
|
+ entity.F_CreateOn,
|
|
|
127
|
+ entity.F_LastModifyOn,
|
|
|
128
|
+ entity.F_LastModifyBy,
|
|
|
129
|
+ entity.F_DeleteOn,
|
|
|
130
|
+ entity.F_DeleteBy,
|
|
115
|
131
|
childnodes = TreeRecursion(data, entity.F_Id)
|
|
116
|
132
|
};
|
|
117
|
133
|
newList.Add(obj);
|