From 7530eb13e95df406ea11352c400a3e72bb7a50af Mon Sep 17 00:00:00 2001 From: falcon <9504402@qq.com> Date: Mon, 1 Apr 2019 15:42:30 +0800 Subject: [PATCH] =?UTF-8?q?(#16)=E4=BC=98=E5=8C=96=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?=E7=95=8C=E9=9D=A2=EF=BC=8C=E4=B8=BB=E9=A1=B5=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E9=93=BE=E6=8E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WebSiteCode/Cmdjy/Cmdjy/Cmdjy.csproj | 2 +- WebSiteCode/Cmdjy/Cmdjy/Controllers/HospitalInfoController.cs | 2 +- WebSiteCode/Cmdjy/Cmdjy/Properties/AssemblyInfo.cs | 4 ++-- WebSiteCode/Cmdjy/Cmdjy/Views/Home/Index.cshtml | 1 + WebSiteCode/Cmdjy/Cmdjy/Views/HospitalInfo/Index.cshtml | 1 + 5 files changed, 6 insertions(+), 4 deletions(-) create mode 100644 WebSiteCode/Cmdjy/Cmdjy/Views/HospitalInfo/Index.cshtml diff --git a/WebSiteCode/Cmdjy/Cmdjy/Cmdjy.csproj b/WebSiteCode/Cmdjy/Cmdjy/Cmdjy.csproj index 7be2b57..566bdea 100644 --- a/WebSiteCode/Cmdjy/Cmdjy/Cmdjy.csproj +++ b/WebSiteCode/Cmdjy/Cmdjy/Cmdjy.csproj @@ -266,6 +266,7 @@ + Web.config @@ -289,7 +290,6 @@ - diff --git a/WebSiteCode/Cmdjy/Cmdjy/Controllers/HospitalInfoController.cs b/WebSiteCode/Cmdjy/Cmdjy/Controllers/HospitalInfoController.cs index 26cc2ca..6edb7af 100644 --- a/WebSiteCode/Cmdjy/Cmdjy/Controllers/HospitalInfoController.cs +++ b/WebSiteCode/Cmdjy/Cmdjy/Controllers/HospitalInfoController.cs @@ -16,7 +16,7 @@ namespace Cmdjy.Controllers public Lazy HosInfo { get; set; } public ActionResult Index() { - return View(); + return PartialView(); } public ActionResult HospitalList() { diff --git a/WebSiteCode/Cmdjy/Cmdjy/Properties/AssemblyInfo.cs b/WebSiteCode/Cmdjy/Cmdjy/Properties/AssemblyInfo.cs index 6cec13d..f492fbf 100644 --- a/WebSiteCode/Cmdjy/Cmdjy/Properties/AssemblyInfo.cs +++ b/WebSiteCode/Cmdjy/Cmdjy/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ using System.Runtime.InteropServices; // // 你可以指定所有值,也可以让修订版本和内部版本号采用默认值, // 方法是按如下所示使用 "*": -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyVersion("1.0.1.0")] +[assembly: AssemblyFileVersion("1.0.1.0")] diff --git a/WebSiteCode/Cmdjy/Cmdjy/Views/Home/Index.cshtml b/WebSiteCode/Cmdjy/Cmdjy/Views/Home/Index.cshtml index dec3d66..d5d8986 100644 --- a/WebSiteCode/Cmdjy/Cmdjy/Views/Home/Index.cshtml +++ b/WebSiteCode/Cmdjy/Cmdjy/Views/Home/Index.cshtml @@ -4,6 +4,7 @@
  • 版本1.0
  • @Ajax.ActionLink("厂商列表","Index","Company",new AjaxOptions { UpdateTargetId = "main" })
  • @Ajax.ActionLink("医疗机构处方列表","Index","HisInfo",new AjaxOptions { UpdateTargetId = "main" })
  • +
  • @Ajax.ActionLink("医疗机构列表","Index","HospitalInfo",new AjaxOptions { UpdateTargetId = "main" })
  • @Ajax.ActionLink("万仕达下载测试","Index","WsdInterface",new AjaxOptions { UpdateTargetId = "main" })

  • diff --git a/WebSiteCode/Cmdjy/Cmdjy/Views/HospitalInfo/Index.cshtml b/WebSiteCode/Cmdjy/Cmdjy/Views/HospitalInfo/Index.cshtml new file mode 100644 index 0000000..ee29ea8 --- /dev/null +++ b/WebSiteCode/Cmdjy/Cmdjy/Views/HospitalInfo/Index.cshtml @@ -0,0 +1 @@ +接口跳转 \ No newline at end of file