Browse Source

Merge branch 'master' of http://114.55.54.52:3000/zmm/GBRSWN

zmm 6 years ago
parent
commit
1fecdf5176

+ 20 - 0
CZKJ.GBRS2.WebMVC/Views/PriceAnnouncement/Index.cshtml

@@ -3,6 +3,8 @@
3 3
     <link rel="stylesheet" href="@ConfigHelper.GetCDNPrefix()/assets/css/info.css">
4 4
     <link href="@ConfigHelper.GetCDNPrefix()/assets/css/rate.css" rel="stylesheet" />
5 5
     <link rel="stylesheet" href="@ConfigHelper.GetCDNPrefix()/assets/css/pikaday.css">
6
+    <link rel="stylesheet" href="@ConfigHelper.GetCDNPrefix()/assets/plugins/page/paging.css">
7
+
6 8
     <style>
7 9
         .filterInp .d-close {
8 10
             position: absolute;
@@ -103,6 +105,7 @@
103 105
                         </tr>
104 106
                     }
105 107
                 </table>
108
+                <div class="pageDiv"></div>
106 109
             </div>
107 110
         </div>
108 111
     </div>
@@ -110,6 +113,7 @@
110 113
 @section script{
111 114
     <script src="/assets/plugins/date/pikaday.js"></script>
112 115
     <script src="/assets/plugins/date/moment.js"></script>
116
+    <script src="/assets/plugins/page/jquery.page.js"></script>
113 117
     <script>
114 118
         $('.filSelect').click(function () {
115 119
             if ($('.filOption').css('display') === "none") {
@@ -262,4 +266,20 @@
262 266
 
263 267
         })
264 268
     </script>
269
+    @*分页*@
270
+    <script>
271
+         //分页
272
+            var pageSize =10;
273
+            var rowsCount = @(Model.RowsCount);
274
+            var pageIndex = @(Model.PageIndex);
275
+            $(".pageDiv").createPage({
276
+                pageCount: Math.ceil(rowsCount / pageSize), //总页数
277
+                current: pageIndex, //当前页
278
+                turndown: 'false',
279
+                backFn: function (p) {
280
+                    pageIndex = p;
281
+                    location.href = "@Url.Action("Index", "publicInfo", new {TypeId= Model.TypeId})&pageIndex=" + pageIndex + "&pageSize=" + pageSize;
282
+                }
283
+            });
284
+    </script>
265 285
 }

+ 2 - 2
CZKJ.GBRS2.WebMVC/Views/PublicInfo/Index.cshtml

@@ -164,7 +164,7 @@
164 164
             });
165 165
             $("a.active").parents("ul").show().siblings("a").addClass("active cur");
166 166
             //分页
167
-            var pageSize =10;
167
+            var pageSize =1;
168 168
             var rowsCount = @(Model.RowsCount);
169 169
             var pageIndex = @(Model.PageIndex);
170 170
             $(".pageDiv").createPage({
@@ -173,7 +173,7 @@
173 173
                 turndown: 'false',
174 174
                 backFn: function (p) {
175 175
                     pageIndex = p;
176
-                    location.href = "@Url.Action("Index", "publicInfo", new {TypeId= Model.TypeId})&pageIndex=" + pageIndex + "&pageSize=" + pageSize;
176
+                    location.href = "@Url.Action("Index", "PriceAnnouncement", new {TypeId= Model.TypeId})&pageIndex=" + pageIndex + "&pageSize=" + pageSize;
177 177
                 }
178 178
             });
179 179
         })

+ 2 - 2
CZKJ.GBRS2.WebMVC/wwwroot/assets/css/pikaday.css

@@ -1,4 +1,4 @@
1
-@charset "UTF-8";
1
+@charset "UTF-8";
2 2
 
3 3
 /*!
4 4
  * Pikaday
@@ -6,7 +6,7 @@
6 6
  */
7 7
 
8 8
 .pika-single {
9
-    z-index: 9999;
9
+    z-index: 99;
10 10
     display: block;
11 11
     position: relative;
12 12
     color: #333;