1234567891011121314151617181920212223242526272829303132 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="utf-8" %>
- <%@include file="/WEB-INF/ehr/commons/jsp/commonInclude.jsp" %>
- <%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
- <!--######用户管理页面Title设置######-->
- <!-- ####### 页面部分 ####### -->
- <div class="m-content">
- <!-- ####### 查询条件部分 ####### -->
- <div class="m-form-inline">
- <div class="m-form-group">
- <div class="m-form-control">
- <input type="text" id="txtName" class="l-text-field" placeholder="请输入应用名称"/>
- </div>
- <div class="m-form-control" >
- <label>状态:</label>
- <input type="text" id="statusName" class="l-text-field" />
- </div>
- <div class="m-form-control right" >
- <div id="div_new_record" class="l-button">
- <span><spring:message code="btn.create"/></span>
- </div>
- </div>
- </div>
- </div>
- <!--######菜单信息表######-->
- <div id="div_grid">
- </div>
- </div>
|