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