Newer
Older
alarm / WebRoot / common / layout / hierarchicalQuery.jsp
zhout on 2 Mar 2022 1 KB first commit
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@include file="/taglibs.jsp"%>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" content="ie=edge"/>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="${ctx}/s/jquery-easyui-1.3.2/themes/bootstrap/easyui.css" />
<link rel="stylesheet" type="text/css" href="${ctx}/s/jquery-easyui-1.3.2/themes/icon.css" />
<link rel="stylesheet" type="text/css" href="${ctx}//s/jquery-easyui-1.3.2/themes/frm.css" />
<script type="text/javascript" src="${ctx}/s/jquery-easyui-1.3.2/jquery-1.8.0.min.js"></script>
<script type="text/javascript" src="${ctx}/s/jquery-easyui-1.3.2/jquery.easyui.min.js"></script>
<script src="${ctx}/s/jquery-easyui-1.3.2/locale/easyui-lang-zh_CN.js" type="text/javascript"></script>
<style type="text/css">
table,td,tr {
	font-size: 12px;
}

td {
	padding: 3px 3px 3px 3px;
}

input {
	width: 120px;
}
</style>
</head>
<body style="text-align: left;">
<input type="hidden" id="context">
<div id="tb" style="padding:5px;height:auto">
    <form id="workListQuery" METHOD="GET">
        <tr>
            <td>所属道路:</td>
            <td>
                <input id="dev-road-add" class="easyui-combobox"  data-options="valueField: 'label',textField: 'value'" />
            </td>
            <td>图层名称:</td>
            <td>
                <input id ="eqLayer" class="easyui-combobox" data-options="valueField: 'label',textField: 'value'"/>
            </td>
            <td>
                <a href="#" class="easyui-linkbutton" iconCls="icon-search" onclick="query()">查询</a>
            </td>
        </tr>
    </form>

</div>
<table id="dg" toolbar="#tb"></table>
</body>
</html>

<script type="text/javascript" src="${ctx}/s/alarm/hierarchicalQuery.js"></script>