123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- pageEncoding="UTF-8"%>
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>江苏省港口建设与经营管理信息系统</title>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <%@ include file="../../common.jsp"%>
- <script type="text/javascript" src="${app }/static/biz/js/set/user/usermain.js"></script>
- <script type="text/javascript">
- $(document).ready(function () {
- user.main.init();
- iFrameHeightIframe('${menuid}');//自适应高度
- $('#sfjyr').width('80%');
- });
- </script>
- </head>
- <body>
- <div class="box" >
- <div class="box-content" >
- <form action="${app }/user/main" id="userform" method="post">
- <div >
- <table class="search_table" cellpadding="0" cellspacing="0">
- <tr>
- <th width="10%"></th>
- <th width="25%"></th>
- <th width="10%"></th>
- <th width="25%"></th>
- <th width="10%"></th>
- <th width="20%"></th>
- </tr>
- <tr>
- <tr>
- <td class="right">
- 用户名称 :
- </td>
- <td >
- <input type="text" class="form-control" name="username" value="${username }">
- </td>
- <td class="right">
- 登录名:
- </td>
- <td >
- <input type="text" class="form-control" name="uname" value="${uname }">
-
- </td>
- <td class="right">
- 是否经营人:
- </td>
-
- <td >
- <select id="sfjyr" name="sfjyr" class='selectpicker' >
- <option></option>
- <option
- <c:if test="${sfjyr == '201' }">
- selected="selected"
- </c:if>
- value="201">是</option>
- <option
- <c:if test="${sfjyr == '202' }">
- selected="selected"
- </c:if>
- value="202">否</option>
- </select>
-
- </td>
- </tr>
- <tr>
- <td class="right" colspan="6">
- <authz:hasPermission name="${appName}:user:main">
- <a class="btn btn-default btn-sm" href="#" onclick="user.main.search()">
- <i class="glyphicon glyphicon-search"></i>
- 查询</a>
- </authz:hasPermission>
- <authz:hasPermission name="${appName}:user:add">
- <a class="btn btn-default btn-sm" href="#" onclick="user.main.add()">
- <i class="glyphicon glyphicon-plus"></i>
- 新增</a>
- </authz:hasPermission>
- </td>
- </tr>
- </table>
- </div>
- <!-- 列表 -->
- <div style="background-color:#f4f4f4;">
- <table class="main_table" cellpadding="0" cellspacing="0">
- <tr>
- <th width="10%">序号</th>
- <th width="20%">用户名称</th>
- <th width="20%">登录账号</th>
- <th width="20%">所属管理部门</th>
- <th width="10%">排序号</th>
- <th width="1%" class='operatetd'>操作</th>
- </tr>
- <c:forEach items="${list}" var="user" varStatus="status">
- <tr class="tr_bg">
- <td>${status.index+1 }</td>
- <td>${user.name }</td>
- <td>${user.uname }</td>
- <td>${user.ssglbmzw }</td>
- <td>${user.sortno }</td>
- <td class='operatetd'>
- <a class="btn btn-default btn-xs" href="#" onclick="user.main.view('${user.id}')" title='查看'>
- <i class="glyphicon glyphicon-search"></i>
- </a>
- <authz:hasPermission name="${appName}:user:edit">
- <a class="btn btn-default btn-xs" href="#" onclick="user.main.edit('${user.id}')" title='编辑'>
- <i class="glyphicon glyphicon-pencil"></i>
- </a>
- </authz:hasPermission>
- <authz:hasPermission name="${appName}:user:delete">
- <a class="btn btn-default btn-xs" href="#" onclick="user.main.del('${user.id}')" title='删除'>
- <i class="glyphicon glyphicon-trash"></i>
- </a>
- </authz:hasPermission>
- <authz:hasPermission name="${appName}:user:edit">
- <a class="btn btn-default btn-xs" href="#" onclick="user.main.reset('${user.id}')" title='重置密码'>
- <i class="glyphicon glyphicon-asterisk"></i>
- </a>
- </authz:hasPermission>
- </td>
- </tr>
- </c:forEach>
- </table>
- </div>
- <!-- 分页 -->
- <jsp:include page="../../pageinfo.jsp"></jsp:include>
-
- </div>
- </form>
- </div>
-
-
-
- </body>
- </html>
|