|
@@ -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
|
+}
|