Browse Source

修改价格公告利率查询

zmm 6 years ago
parent
commit
ce7a82e992

+ 6 - 0
CZKJ.GBRS2.WebMVC/CZKJ.GBRS2.WebMVC.csproj

@@ -23,6 +23,12 @@
23 23
     <ProjectReference Include="..\CZKJ.GBRS2\CZKJ.GBRS2.csproj" />
24 24
   </ItemGroup>
25 25
 
26
+  <ItemGroup>
27
+    <Content Update="Views\PriceAnnouncement\Detail.cshtml">
28
+      <Pack>$(IncludeRazorContentInPack)</Pack>
29
+    </Content>
30
+  </ItemGroup>
31
+
26 32
   <ProjectExtensions><VisualStudio><UserProperties appsettings_1json__JSONSchema="http://json.schemastore.org/chrome-manifest" /></VisualStudio></ProjectExtensions>
27 33
 
28 34
 </Project>

+ 11 - 4
CZKJ.GBRS2.WebMVC/Controllers/PriceAnnouncementController.cs

@@ -1,7 +1,4 @@
1 1
 using System;
2
-using System.Collections.Generic;
3
-using System.Linq;
4
-using System.Threading.Tasks;
5 2
 using CZFW.Framework.Interface;
6 3
 using CZKJ.GBRS2.Interface;
7 4
 using CZKJ.GBRS2.WebMVC.Models;
@@ -14,11 +11,13 @@ namespace CZKJ.GBRS2.WebMVC.Controllers
14 11
         private readonly IPriceAnnouncement _priceAnnouncementLgoic;
15 12
         private readonly IGallery _galleryLogic;
16 13
         private readonly IType _typeLogic;
17
-        public PriceAnnouncementController(IPriceAnnouncement priceAnnouncementLogic, IGallery galleryLogic, IType typeLogic)
14
+        private readonly IArticle _articleArticle;
15
+        public PriceAnnouncementController(IPriceAnnouncement priceAnnouncementLogic, IGallery galleryLogic, IType typeLogic, IArticle articleLogic)
18 16
         {
19 17
             _priceAnnouncementLgoic = priceAnnouncementLogic;
20 18
             _galleryLogic = galleryLogic;
21 19
             _typeLogic = typeLogic;
20
+            _articleArticle = articleLogic;
22 21
         }
23 22
         public IActionResult Index(int typeId, DateTime? startTime, DateTime? endTime, int pageIndex = 1, int pageSize = 20)
24 23
         {
@@ -35,6 +34,14 @@ namespace CZKJ.GBRS2.WebMVC.Controllers
35 34
             model.RowsCount = rowsCount;
36 35
             model.MaxYear = _priceAnnouncementLgoic.GetMaxYear();
37 36
             model.MinYear = _priceAnnouncementLgoic.GetMinYear();
37
+            model.ArticleList = _articleArticle.GetEntities(x => x.TypeId == 176);
38
+            return View(model);
39
+        }
40
+        public IActionResult Detail(int id)
41
+        {
42
+            var model = new PriceAnnouncementIndexModel();
43
+            model.ArticleList = _articleArticle.GetEntities(x => x.TypeId == 176);
44
+            model.Detail = _articleArticle.GetEntity(id);
38 45
             return View(model);
39 46
         }
40 47
     }

+ 3 - 0
CZKJ.GBRS2.WebMVC/Models/PriceAnnouncementIndexModel.cs

@@ -26,5 +26,8 @@ namespace CZKJ.GBRS2.WebMVC.Models
26 26
         public int PageIndex { get; set; }
27 27
         public int PageSize { get; set; }
28 28
         public int RowsCount { get; set; }
29
+
30
+        public IList<ArticleEntity> ArticleList { get; set; }
31
+        public ArticleEntity Detail { get; set; }
29 32
     }
30 33
 }

+ 128 - 0
CZKJ.GBRS2.WebMVC/Views/PriceAnnouncement/Detail.cshtml

@@ -0,0 +1,128 @@
1
+@model PriceAnnouncementIndexModel
2
+@section style{
3
+    <link rel="stylesheet" href="@ConfigHelper.GetCDNPrefix()/assets/css/info.css">
4
+    <link href="@ConfigHelper.GetCDNPrefix()/assets/css/rate.css" rel="stylesheet" />
5
+    <style>
6
+        .filterInp .d-close {
7
+            position: absolute;
8
+            right: 25px;
9
+            top: 0;
10
+            z-index: 10;
11
+            padding: 0 5px;
12
+            color: #b0b0b0;
13
+        }
14
+
15
+            .filterInp .d-close.d-hide {
16
+                display: none;
17
+            }
18
+
19
+        @@media(max-width:768px) {
20
+            .mobilemargintop {
21
+                margin-top: 40px !important;
22
+            }
23
+        }
24
+    </style>
25
+}
26
+<div class="container info mobilemargintop" style="margin-top:120px;">
27
+    <div class="row">
28
+        <h2 class="title visible-xs-inline-block open-mask">
29
+            价格公告
30
+            <i></i>
31
+        </h2>
32
+        <div class="left">
33
+            <h2 class="title close-mask">
34
+                <em class="visible-xs-inline-block">
35
+                    <img src="/assets/image/arrow-color-left.png" alt="">
36
+                </em>价格公告
37
+            </h2>
38
+            <div class="ul-box">
39
+                <ul>
40
+                    @foreach (var item in Model.ArticleList)
41
+                    {
42
+                        <li class="@(item.Id == Model.Detail.Id?"cur":"")">
43
+                            <a href="@(Url.Action("Detail","PriceAnnouncement",new { id = item.Id}))">@item.Title</a>
44
+                        </li>
45
+                    }
46
+                    <li>
47
+                        <a href="@Url.Action("Index","PriceAnnouncement")">万能险结算利率公告</a>
48
+                    </li>
49
+                </ul>
50
+            </div>
51
+        </div>
52
+        <div class="right">
53
+            <h2>@Model.Detail.Title</h2>
54
+            <!--dd  -->
55
+            <div class="info-detail">
56
+                <div class="con">
57
+                    @Html.Raw(Model.Detail.Detail)
58
+                </div>
59
+            </div>
60
+        </div>
61
+    </div>
62
+</div>
63
+@section script{
64
+    <script>
65
+        window.dataMark = "0$15231983314041342$$15231983721956102$";
66
+        $(function () {
67
+            $(".open-mask").click(function () {
68
+                $(".left").addClass("showIn")
69
+            })
70
+            $(".close-mask").click(function () {
71
+                $(".left").removeClass("showIn")
72
+            })
73
+            $(".ul-box a").has("i").on("click", function () {
74
+                if ($(this).hasClass("cur")) {
75
+                    $(this).removeClass("cur").siblings("ul").slideUp().find("a").removeClass("cur")
76
+                        .siblings(
77
+                            "ul").slideUp();
78
+                } else {
79
+                    $(this).addClass("cur").siblings("ul").slideDown();
80
+                    $(this).closest("li").siblings("li").find("a").removeClass("cur").siblings("ul")
81
+                        .slideUp();
82
+                }
83
+            });
84
+            var data = {
85
+                "title": "根节点",
86
+                "children": [{
87
+                    "title": "基本信息",
88
+                    "children": [{
89
+                        "title": "基本信息二级",
90
+                        "children": [{
91
+                            "title": "基本信息三级"
92
+                        }]
93
+                    }, {
94
+                        "title": "基本信息二级"
95
+                    }]
96
+                }, {
97
+                    "title": "临时信息"
98
+                }, {
99
+                    "title": "其他信息",
100
+                    "children": [{
101
+                        "title": "其他信息二级"
102
+                    }]
103
+                }]
104
+            };
105
+            var res = "";
106
+
107
+            $(".ul-test").append(dataText(data));
108
+
109
+            function dataText(item) {
110
+                if (item.children && item.children.length > 0) {
111
+                    for (var i = 0; i < item.children.length; i++) {
112
+                        res += "<li><a>" + item.children[i].title + "</a>";
113
+                        if (item.children[i].children && item.children[i].children.length > 0) {
114
+                            res += "<i></i><ul>"
115
+                        }
116
+                        dataText(item.children[i]);
117
+                        if (item.children[i].children && item.children[i].children.length > 0) {
118
+                            res += "</ul>"
119
+                        }
120
+                        res += "</li>"
121
+                    }
122
+                }
123
+                return res;
124
+            }
125
+        })
126
+    </script>
127
+
128
+}

+ 6 - 6
CZKJ.GBRS2.WebMVC/Views/PriceAnnouncement/Index.cshtml

@@ -30,9 +30,6 @@
30 30
         }
31 31
     </style>
32 32
 }
33
-@*<div class="banner">
34
-        <img src="@Model.Banner.Image" alt="">
35
-    </div>*@
36 33
 <div class="container info mobilemargintop" style="margin-top:120px;">
37 34
     <div class="row">
38 35
         <h2 class="title visible-xs-inline-block open-mask">
@@ -47,9 +44,12 @@
47 44
             </h2>
48 45
             <div class="ul-box">
49 46
                 <ul>
50
-                    <li>
51
-                        <a href="/Article/Detail/123">利率查询</a>
52
-                    </li>
47
+                    @foreach (var item in Model.ArticleList)
48
+                    {
49
+                        <li>
50
+                            <a href="@(Url.Action("Detail","PriceAnnouncement",new { id = item.Id}))">@item.Title</a>
51
+                        </li>
52
+                    }
53 53
                     <li class="cur">
54 54
                         <a href="javascript:void(0)">万能险结算利率公告</a>
55 55
                     </li>

+ 2 - 2
CZKJ.GBRS2.WebMVC/appsettings.json

@@ -26,8 +26,8 @@
26 26
     "Website": "www.guobaojinrong.com"
27 27
   },
28 28
   "ConnectionStrings": {
29
-    //"Development": "Data Source=sp5045a8d445fe0.mysql.rds.aliyuncs.com;user id=gbrs2_dba;password=CZKJczkj2016gbrs2;Initial Catalog=gbrs2"
30
-    "Development": "Data Source=10.237.55.203;user id=ow_dl;password=6hioO78*1$;Initial Catalog=ow"
29
+    "Development": "Data Source=sp5045a8d445fe0.mysql.rds.aliyuncs.com;user id=gbrs2_dba;password=CZKJczkj2016gbrs2;Initial Catalog=gbrs2"
30
+    //"Development": "Data Source=10.237.55.203;user id=ow_dl;password=6hioO78*1$;Initial Catalog=ow"
31 31
   },
32 32
   //"CoreQuery": {
33 33
   //  "CustomerType": "0",