12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
-
- @{
- ViewBag.Title = "RingStatistics";
- Layout = "~/Views/Shared/_MainLayoutPage.cshtml";
- }
- <!DOCTYPE html>
- <html>
- <head>
- <meta name="viewport" content="width=device-width" />
- <title>RingStatistics</title>
- </head>
- <body>
- <table id="Table"> </table>
- </body>
- </html>
- <script type="text/javascript">
- $(function () {
- var Report = $('#Table');
- Report.datagrid({
- fit: true,
- showFooter:true,
- width: '100%',
- toolbar: '#toolbar',
- pageSize: 10,
- rownumbers: true,
- pagination: true,
- border: false,
- remoteSort: true,
- singleSelect: true, //单行选择
- loadMsg: "正在查询数据,请稍候...",
- url: '/Report/GetRingStatistics',
- method: 'post',
- columns:[[
- { field: '环节', title: '环节', width: 100, halign: 'center' },
- { field: '总数量', title: '总数量', width: 100, halign: 'center' },
- { field: '按时处理数量', title: '按时处理数量', width: 100, halign: 'center' },
- { field: '超时数量', title: '超时数量', width: 100, halign: 'center' },
- { field: '平均超时(小时)', title: '平均超时(小时)', width: 150, halign: 'center' },
- { field: '最长超时(小时)', title: '最长超时(小时)', width: 150, halign: 'center' },
- ]]
- })
- })
- </script>
|