Newer
Older
alarm / WebRoot / content / alarm / device-log.jsp
zhout on 2 Mar 2022 2 KB first commit
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@include file="/taglibs.jsp"%>
<html>
<head>
    <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 type="text/javascript" src="${ctx}/s/jquery-easyui-1.3.2/locale/easyui-lang-zh_CN.js"></script>
</head>
<body style="text-align: center;">
    <table id="dg" toolbar="#query_dialog"></table>

    <div id="query_dialog" style="padding:3px;height:auto">
        <form id="fm_query" style="margin: 0px" method="post">
            <tr>
                <td>设备类型:</td>
                <td>
                    <input id="dev-type-add" name="deviceType" editable="false" style="width: 140px;"/>
                </td>
                <td>设备编号:</td>
                <td>
                    <input id="dev" style="width: 140px"/>
                </td>
                <td>开始时间:</td>
                <td>
                    <input id="beginTime_query" class="easyui-datebox" style="width: 140px" editable="false"/>
                </td>
                <td>结束时间:</td>
                <td>
                    <input id="endTime_query" class="easyui-datebox" style="width: 140px" editable="false"/>
                </td>
                <td>
                    <a class="easyui-linkbutton" iconCls="icon-search" id="queryBtn">查询</a>
                </td>
            </tr>
        </form>
    </div>
    <input id="context" type="hidden" value="${ctx}"/>
</body>
</html>
<script type="text/javascript" src="${ctx}/s/alarm/device-log.js"></script>

<script>
    $(function(){
        deviceLog.init();
    });
</script>