| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 | <%@ 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/userdetail.js"></script>	<script type="text/javascript">		$(document).ready(function () {			user.detail.roleDate='${rolelist}';			user.detail.existRole='${roles}';			user.detail.szdData='${record.szd.id}';			user.detail.ssglbm='${record.ssglbm.id}';			user.detail.init();			sfjyr();		});				function sfjyr(){			var sfjyr='${record.sfjyrzw }';			if(sfjyr=="") {				$('#ssjyr').hide();				$('#ssgl').hide();			} else if(sfjyr=="是") {				$('#ssjyr').show();				$('#ssgl').hide();			} else {				$('#ssjyr').hide();				$('#ssgl').show();			}		}	</script>	<style typt="text/css">		.apply td{font-size: 14px;}	</style></head><body>	<div class="box" >		<div class="box-content" >			<div class="apply_fill">					<table class="apply" cellpadding="0" cellspacing="0">						<tr>							<th>所在地: </th>							<td colspan="3">${record.szd.text}</td>						</tr>						<tr>							<th>用户名称 :  </th>							<td >								${record.name }							</td>							<th>登录账号:  </th>							<td >								${record.uname }							</td>						</tr>						<tr>							<th>所属角色 :  </th>							<td >								${record.rolezw }							</td>							<th >是否经营人:  </th>							<td>								${record.sfjyrzw }							</td>						</tr>						<tr>							<th>微信号 :  </th>							<td >								${record.weixinid }							</td>							<th>排序号 :  </th>							<td >								${record.sortno }							</td>						</tr>												<tr id="ssjyr">							<th>所属经营人:  </th>							<td id="d1">								${record.ssjyrzw }							</td>													</tr>						<tr id="ssgl">							<th>所属管理部门:  </th>							<td >								${record.ssglbmzw }							</td>							<th>所属管理人员:  </th>							<td >								${record.ssglryzw }							</td>						</tr>					</table>					<div  id="buttons">							             <a class="btn btn-default btn-sm" href="#"  onclick="user.detail.back()">							   <i class="glyphicon glyphicon-arrow-left"></i> 							            返回</a>          			</div>			</div>					</div>	</div></body></html>
 |