| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
- <%
- String path = request.getContextPath();
- String basePath = request.getScheme() + "://"
- + request.getServerName() + ":" + request.getServerPort()
- + path + "/";
- %>
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
- <!-- 避免IE使用兼容模式 -->
- <meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
- <meta name="renderer" content="webkit">
- <%@ include file="ap.jsp" %>
- </head>
- <body>
- <div data-toggle="topjui-layout" data-options="fit:true">
- <div data-options="region:'center',iconCls:'icon-reload',title:'',split:true,border:false,bodyCls:'border_left_right'">
- <!-- datagrid表格 -->
- <table data-toggle="topjui-datagrid"
- data-options="id:'userDg',
- singleSelect:true,
- selectOnCheck:false,
- checkOnSelect:false,
- url:'ioschoolinschoolList.action',
- childTab: [{id:'eastTabs'}],
- filter: [{
- field: 'car_number',
- type: 'textbox',
- op: ['contains', 'equal', 'notequal', 'less', 'greater']
- }]">
- <thead>
- <tr>
- <th data-options="field:'id',title:'UUID',checkbox:true"></th>
- <th data-options="field:'car_number',title:'车牌号',sortable:true"></th>
- <th data-options="field:'in_time',title:'入场时间',sortable:true"></th>
- <th data-options="field:'in_channel_id',title:'进场通道',sortable:true"></th>
- <th data-options="field:'c_type',title:'入场类型',sortable:true"></th>
- <th data-options="field:'empty_plot',title:'空闲车位数',sortable:true"></th>
- </thead>
- </table>
- </div>
- </div>
- <!-- 表格工具栏开始 -->
- <div id="userDg-toolbar" class="topjui-toolbar"
- data-options="grid:{
- type:'datagrid',
- id:'userDg'
- }">
- <a href="javascript:void(0)"
- data-toggle="topjui-menubutton"
- data-options="method:'filter',
- extend: '#userDg-toolbar',
- btnCls:'topjui-btn-black'">查询</a>
- </div>
- <!-- 表格工具栏结束 -->
- </body>
- </html>
|