From 98de29b1933e9bbb6607af5ac9bc997f5aaaf250 Mon Sep 17 00:00:00 2001 From: ndbs Date: Fri, 2 Dec 2022 17:31:29 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=8F=E8=B4=B9=E8=8E=B7=E5=8F=96=E5=AE=A1?= =?UTF-8?q?=E6=A0=B8=E6=95=B0=E6=8D=AE=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Modules/FundsApplyApi.cs | 21 ++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) 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 提交数据