diff --git a/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/FundsApplyApi.cs b/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/FundsApplyApi.cs index 63d9e3129..c4b33dc79 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/FundsApplyApi.cs +++ b/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/FundsApplyApi.cs @@ -33,6 +33,7 @@ namespace Learun.Application.WebApi Post["/delete"] = DeleteForm; Post["/save"] = SaveForm; Post["/submit"] = Submit; + Get["/shList"] = GetshList; } #region 获取数据 @@ -71,7 +72,7 @@ namespace Learun.Application.WebApi }; return Success(jsonData); } - + /// /// 获取申请单号 /// @@ -85,6 +86,24 @@ namespace Learun.Application.WebApi }; return Success(jsonData); } + + /// + /// 获取页面显示列表数据 + /// + /// + /// + public Response GetshList(dynamic _) + { + FundsApplyEntity parameter = this.GetReqData(); + var FundsApplyData = fundsApplyIBLL.GetEntityByProcessId(parameter.ProcessId); + var FundsApplyDetailData = fundsApplyDetailIBLL.GetListByApplyId(parameter.Id); + var jsonData = new + { + FundsApply = FundsApplyData, + FundsApplyDetail = FundsApplyDetailData, + }; + return Success(jsonData); + } #endregion #region 提交数据