| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@include file="/context/mytags.jsp"%>
- <!DOCTYPE html>
- <html>
- <head>
- <title>审批角色部门关联</title>
- <t:base type="jquery,easyui,tools,DatePicker,autocomplete"></t:base>
- . <script src="webpage/cn/com/lzt/useractiviti/select_user_tools.js"></script>
- <script type="text/javascript">
- //编写自定义JS代码
- </script>
- </head>
- <body>
- <t:formvalid formid="formobj" dialog="true" usePlugin="password" layout="table" action="processRoleDepartMapController.do?doAdd" >
- <input id="id" name="id" type="hidden" value="${processRoleDepartMapPage.id }"/>
- <table style="width: 600px;" cellpadding="0" cellspacing="1" class="formtable">
- <tr>
- <td align="right">
- <label class="Validform_label">
- 角色名称:
- </label>
- </td>
- <td class="value">
- <input id="roleId" name="roleId" type="hidden" style="width: 150px" value="${entity.roleId}"/>
- <t:autocomplete entityName="TSRole" searchField="roleName" labelField="roleName" name="roleName"
- valueField="id" hiddenInputId="roleId" width="250"
- scrollWidth="400" scrollHeight="400" defValue="${entity.roleName}"></t:autocomplete>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">角色名称</label>
- </td>
- </tr>
- <tr>
- <td align="right">
- <label class="Validform_label">
- 部门名称:
- </label>
- </td>
- <td class="value">
- <input id="departId" name="departId" type="hidden" style="width: 150px" value="${entity.departId}" />
- <input id="depName" name="depName" type="text" style="width: 250px" class="inputxt" readonly="readonly"
- value="${entity.depName}" onclick="selectAllDepCheckbox()" />
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">部门名称</label>
- </td>
- </tr>
-
-
- </table>
- </t:formvalid>
- </body>
- <script src = "webpage/cn/com/lzt/process/roledepartmap/processRoleDepartMap.js"></script>
|