You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.2 KiB
38 lines
1.2 KiB
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<QMAPP.Web.Models.Sys.UserOrgaizationModel>" %>
|
|
<table id="optionUserList" style="border:solid 1px #add9c0;" width="100%">
|
|
<tr>
|
|
<td colspan="3" bgcolor="#E5EEFF" >
|
|
<font size="3">已添加的用户</font>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th bgcolor="#F5F5F5">
|
|
</th>
|
|
<th style="display:none">
|
|
组织机构编号
|
|
</th>
|
|
<th bgcolor="#F5F5F5">
|
|
用户名
|
|
</th>
|
|
</tr>
|
|
<%
|
|
if (Model.resultList != null)
|
|
{
|
|
foreach (var item in Model.resultList)
|
|
{
|
|
|
|
%>
|
|
<tr>
|
|
<td>
|
|
<input type="checkbox" name="_selectmenu" />
|
|
</td>
|
|
<td style="display:none">
|
|
<%=item.UserIDPK%>
|
|
</td>
|
|
<td style="border:solid 1px #add9c0;">
|
|
<%=item.UserName%>
|
|
</td>
|
|
</tr>
|
|
<% }
|
|
} %>
|
|
</table>
|
|
|