1234567891011121314151617181920212223242526272829303132333435 |
- <%@ page contentType="text/html;charset=utf-8"%>
- <%@ include file="/WEB-INF/jsp/include.jsp"%>
-
- <tr>
- <td>
- ${fn:escapeXml(vo.name)}
- </td>
- <td>
- ${fn:escapeXml(vo.loginName)}
- </td>
- <td>
- ${fn:escapeXml(vo.status.value)}
- </td>
- <td>
- ${fn:escapeXml(vo.mobile)}
- </td>
- <td>
- <div class="dropdown " style="display: inline-block;">
- <a href="#" class="dropdown-toggle" data-toggle="dropdown" ><i class="fa fa-navicon"></i></a>
- <ul class="dropdown-menu dropdown-menu-right" >
- <li>
- <c:if test="${vo.status=='NORMAL' }">
- <a href="${rootUrl }app/zfdAuditor/status/${vo.id}/INVALID" data-selector="#userName" class="taiji_operate {confirm_message:'是否停用用户:${vo.name} ',refresh:true} taiji_acl">停用</a>
- </c:if>
- <c:if test="${vo.status=='INVALID' }">
- <a href="${rootUrl }app/zfdAuditor/status/${vo.id}/NORMAL" data-selector="#userName" class="taiji_operate {confirm_message:'是否启用用户:${vo.name} ',refresh:true} taiji_acl">启用</a>
- </c:if>
- </li>
- </ul>
- </div>
- <a href="${rootUrl}app/zfdAuditor/view/${vo.id}" class="taiji_modal taiji_acl">详情</a>
- <a href="${rootUrl}app/zfdAuditor/delete/${vo.id}" class="taiji_remove {confirm_message:'你确定要删除吗? '} taiji_acl">删除</a>
-
- </td>
- </tr>
|