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