| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>无标题文档</title>
- <script type="text/javascript" src="views/xt/qxgl/setQxxx.js"></script>
- </head>
- <body>
- <input type="hidden" id="jsid" value="$!jsid" />
- <table width="470" cellspacing="0" cellpadding="0" class="tabnone">
- <tr style="text-align:center">
- <td height="30"><div align="center">可选系统权限</div></td>
- <td> </td>
- <td><div align="center">所选系统权限</div></td>
- </tr>
- <tr>
- <td>
- <div align="center">
- <input name="qxmc" id="qxmc" type="text" class="search_txt"
- style="width:175px;" onclick="this.value=''" />
- </div>
- </td>
- <td>
- <input type="button" value="查询" onclick="getSelectableQxxxList()" />
- </td>
- <td></td>
- </tr>
- <tr>
- <td>
- <div align="center">
- <select name="selectableList" id="selectableList" multiple="multiple" style="height:300px; width:180px;">
- #foreach($obj in $!selectableList)
- <option value="$!obj.qxdm">$!obj.qxmc</option>
- #end
- </select>
- </div>
- </td>
- <td>
- <table width="100%" cellpadding="0" cellspacing="0" style="height: 120px;">
- <tr>
- <td>
- <div align="center">
- <a title="选择系统权限" onclick="javascript:moveModule('selectableList','selectedList')" style="cursor: hand;"><img src="images/selectjs.gif" width="21" height="16" /></a>
- </div>
- </td>
- </tr>
- <tr>
- <td> </td>
- </tr>
- <tr>
- <td>
- <div align="center">
- <a title="删除系统权限" onclick="javascript:moveModule('selectedList','selectableList')" style="cursor: hand;"><img src="images/deljs.gif" width="21" height="16" /></a>
- </div>
- </td>
- </tr>
- </table>
- </td>
- <td>
- <div align="center">
- <select name="selectedList" id="selectedList" multiple="multiple" style="height:300px; width:180px;" valid="required" errmsg="所选系统权限不能为空!">
- #foreach($obj in $!selectedList)
- <option value="$!obj.qxdm" >$!obj.qxmc</option>
- #end
- </select>
- </div>
- </td>
- </tr>
- <tr>
- <td> </td>
- <td> </td>
- <td> </td>
- </tr>
- </table>
- </body>
- </html>
|