diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/WP_FileList/Index.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/WP_FileList/Index.cshtml index eb8acecc7..5b6cd50cd 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/WP_FileList/Index.cshtml +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/WP_FileList/Index.cshtml @@ -23,8 +23,8 @@
-
目录
-
+
标题
+
创建人
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/WP_FileList/Index.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/WP_FileList/Index.js index 218d18c39..d715061b7 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/WP_FileList/Index.js +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/WP_FileList/Index.js @@ -64,7 +64,6 @@ var bootstrap = function ($, learun) { page.search(queryJson); } }, 220, 400); - $('#CId').lrDataSourceSelect({ code: 'FileCatalog', value: 'cid', text: 'cname' }); $('#FCreater').lrDataSourceSelect({ code: 'BaseUser', value: 'f_userid', text: 'f_realname' }); // 刷新 $('#lr_refresh').on('click', function () { diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/PersonnelManagement/WP_FileList/WP_FileListService.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/PersonnelManagement/WP_FileList/WP_FileListService.cs index c706bc039..dff8344c2 100644 --- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/PersonnelManagement/WP_FileList/WP_FileListService.cs +++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/PersonnelManagement/WP_FileList/WP_FileListService.cs @@ -54,6 +54,13 @@ namespace Learun.Application.TwoDevelopment.PersonnelManagement dp.Add("CId", queryParam["CId"].ToString(), DbType.String); strSql.Append(" AND t.CId = @CId "); } + if (!queryParam["FTitile"].IsEmpty()) + { + dp.Add("FTitile", "%" + queryParam["FTitile"].ToString() + "%", DbType.String); + strSql.Append(" AND t.FTitile Like @FTitile "); + } + + if (!queryParam["FCreater"].IsEmpty()) { dp.Add("FCreater", queryParam["FCreater"].ToString(), DbType.String);