|
|
@@ -267,7 +267,7 @@ namespace Learun.Application.WebApi.Modules |
|
|
|
public Response GetList20(dynamic _) |
|
|
|
{ |
|
|
|
var userinfo = userInfo; |
|
|
|
var functionlist = perm_FunctionIBLL.GetListByUserId(userinfo.userId).Select(m=> |
|
|
|
var functionlist = perm_FunctionIBLL.GetListByUserId(userinfo.userId).Where(m=>m.FIsH5==true).Select(m=> |
|
|
|
new |
|
|
|
{ |
|
|
|
m.FName, |
|
|
@@ -289,7 +289,7 @@ namespace Learun.Application.WebApi.Modules |
|
|
|
var datatype = perm_FunctionTypeIBLL.GetListByUserId(userInfo.userId); |
|
|
|
foreach (var typeEntity in datatype) |
|
|
|
{ |
|
|
|
var datafunction = perm_FunctionIBLL.GetListByFTId(typeEntity.FTId, userInfo.userId); |
|
|
|
var datafunction = perm_FunctionIBLL.GetListByFTId(typeEntity.FTId, userInfo.userId).Where(m=>m.FIsH5==true); |
|
|
|
foreach (var item in datafunction) |
|
|
|
{ |
|
|
|
if (item.FIsManagePage == true) |
|
|
|