inschool.jsp 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
  2. <%
  3. String path = request.getContextPath();
  4. String basePath = request.getScheme() + "://"
  5. + request.getServerName() + ":" + request.getServerPort()
  6. + path + "/";
  7. %>
  8. <!DOCTYPE html>
  9. <html>
  10. <head>
  11. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  12. <!-- 避免IE使用兼容模式 -->
  13. <meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
  14. <meta name="renderer" content="webkit">
  15. <%@ include file="ap.jsp" %>
  16. </head>
  17. <body>
  18. <div data-toggle="topjui-layout" data-options="fit:true">
  19. <div data-options="region:'center',iconCls:'icon-reload',title:'',split:true,border:false,bodyCls:'border_left_right'">
  20. <!-- datagrid表格 -->
  21. <table data-toggle="topjui-datagrid"
  22. data-options="id:'userDg',
  23. singleSelect:true,
  24. selectOnCheck:false,
  25. checkOnSelect:false,
  26. url:'ioschoolinschoolList.action',
  27. childTab: [{id:'eastTabs'}],
  28. filter: [{
  29. field: 'car_number',
  30. type: 'textbox',
  31. op: ['contains', 'equal', 'notequal', 'less', 'greater']
  32. }]">
  33. <thead>
  34. <tr>
  35. <th data-options="field:'id',title:'UUID',checkbox:true"></th>
  36. <th data-options="field:'car_number',title:'车牌号',sortable:true"></th>
  37. <th data-options="field:'in_time',title:'入场时间',sortable:true"></th>
  38. <th data-options="field:'in_channel_id',title:'进场通道',sortable:true"></th>
  39. <th data-options="field:'c_type',title:'入场类型',sortable:true"></th>
  40. <th data-options="field:'empty_plot',title:'空闲车位数',sortable:true"></th>
  41. </thead>
  42. </table>
  43. </div>
  44. </div>
  45. <!-- 表格工具栏开始 -->
  46. <div id="userDg-toolbar" class="topjui-toolbar"
  47. data-options="grid:{
  48. type:'datagrid',
  49. id:'userDg'
  50. }">
  51. <a href="javascript:void(0)"
  52. data-toggle="topjui-menubutton"
  53. data-options="method:'filter',
  54. extend: '#userDg-toolbar',
  55. btnCls:'topjui-btn-black'">查询</a>
  56. </div>
  57. <!-- 表格工具栏结束 -->
  58. </body>
  59. </html>