123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- pageEncoding="UTF-8"%>
- <%@page import="java.util.*" %>
- <%@ include file="../common/base.jsp"%>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>编辑用户信息</title>
- <link rel="stylesheet" type="text/css" href="${basePath }/css/public.css"/>
- <link rel="stylesheet" type="text/css" href="${basePath }/css/vote.css"/>
- <script type="text/javascript" src="${basePath}/js/usermanage/user.js"></script>
-
- <script type="text/javascript">
- function back(){
- history.go(-1);
- }
- </script>
- </head>
- <body>
- <div class="voteBase main">
- <div class="first">
- <div class="first1">
- <div class="first_title">
- <span class="thems"><c:if test="${markTitle == 0}">新增</c:if>
- <c:if test="${markTitle == 1}">编辑</c:if>用户信息</span>
- </div>
- <div style=" float:right;height:35px; margin-right: 10px;">
- <div class="backBtn" onclick="back()">返回</div>
- </div>
- </div>
- <div class="remind">
- </div>
- <div class="grayLine"></div>
- </div>
-
- <form id="mainForm" method="post" class="mainForm">
- <input type="hidden" id="id" name="id" value="${user.id}">
- <!-- 初始折扣选中 -->
- <input type="hidden" id="selectUserSpIds" value="${userSpIds}"/>
- <input type="hidden" id="spids" name="spids" value=""/>
-
- <div class="voteBaseInfo">
- <div class="gz1 fisrtTr"></div>
- <table width="550px" border="0" cellspacing="0" cellpadding="0">
- <tbody>
- <tr>
- <td class="voteRight" width="15%">用户名称:</td>
- <td width=55%">
- <input type="text" style=" height:22px;width: 30%;" name="userName" id="userName" value="${user.userName }" maxlength="10" />
- <span style="color: red;">*</span><span id="userName_message" >用户名不能为空</span>
- </td>
- </tr>
- <c:if test="${markTitle == 0}">
- <tr>
- <td class="voteRight">密码:</td>
- <td width="23%">
- <input type="text" style=" height:22px;width: 30%;" name="passWord" id="passWord" value="${user.passWord }" maxlength="10"/>
- </td>
- </tr>
- </c:if>
-
- <tr>
- <td class="voteRight">所属系统:</td>
- <td width="60%">
- <select id="regSpid" name="regSpid" style=" height:25px; line-height:25px;width: 60%;">
- <option value="">请选择</option>
- <c:forEach items="${spList }" var="sp">
- <c:if test="${sp.spId == spId}">
- <option value="${sp.spId }" selected="selected">${sp.name }</option>
- </c:if>
- <c:if test="${sp.spId != spId}">
- <option value="${sp.spId }">${sp.name }</option>
- </c:if>
- </c:forEach>
- </select>
- </td>
- </tr>
-
- <tr>
- <td class="voteRight">可访问系统:</td>
- <td class="userSpIds">
- </td>
- </tr>
-
-
- <tr style="height:50px" valign="bottom">
- <td colspan="3">
- <div class="voteBtn" style="width:100px">
- <div class="btnSave saveBtn">完成</div>
- </div>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- </form>
- </div>
- </body>
- <script type="text/javascript">
- $(function() {
- User.manage.info.init();
- });
- </script>
- </html>
|