setQxxx.htm 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>无标题文档</title>
  6. <script type="text/javascript" src="views/xt/qxgl/setQxxx.js"></script>
  7. </head>
  8. <body>
  9. <input type="hidden" id="jsid" value="$!jsid" />
  10. <table width="470" cellspacing="0" cellpadding="0" class="tabnone">
  11. <tr style="text-align:center">
  12. <td height="30"><div align="center">可选系统权限</div></td>
  13. <td>&nbsp;</td>
  14. <td><div align="center">所选系统权限</div></td>
  15. </tr>
  16. <tr>
  17. <td>
  18. <div align="center">
  19. <input name="qxmc" id="qxmc" type="text" class="search_txt"
  20. style="width:175px;" onclick="this.value=''" />
  21. </div>
  22. </td>
  23. <td>
  24. <input type="button" value="查询" onclick="getSelectableQxxxList()" />
  25. </td>
  26. <td></td>
  27. </tr>
  28. <tr>
  29. <td>
  30. <div align="center">
  31. <select name="selectableList" id="selectableList" multiple="multiple" style="height:300px; width:180px;">
  32. #foreach($obj in $!selectableList)
  33. <option value="$!obj.qxdm">$!obj.qxmc</option>
  34. #end
  35. </select>
  36. </div>
  37. </td>
  38. <td>
  39. <table width="100%" cellpadding="0" cellspacing="0" style="height: 120px;">
  40. <tr>
  41. <td>
  42. <div align="center">
  43. <a title="选择系统权限" onclick="javascript:moveModule('selectableList','selectedList')" style="cursor: hand;"><img src="images/selectjs.gif" width="21" height="16" /></a>
  44. </div>
  45. </td>
  46. </tr>
  47. <tr>
  48. <td>&nbsp;</td>
  49. </tr>
  50. <tr>
  51. <td>
  52. <div align="center">
  53. <a title="删除系统权限" onclick="javascript:moveModule('selectedList','selectableList')" style="cursor: hand;"><img src="images/deljs.gif" width="21" height="16" /></a>
  54. </div>
  55. </td>
  56. </tr>
  57. </table>
  58. </td>
  59. <td>
  60. <div align="center">
  61. <select name="selectedList" id="selectedList" multiple="multiple" style="height:300px; width:180px;" valid="required" errmsg="所选系统权限不能为空!">
  62. #foreach($obj in $!selectedList)
  63. <option value="$!obj.qxdm" >$!obj.qxmc</option>
  64. #end
  65. </select>
  66. </div>
  67. </td>
  68. </tr>
  69. <tr>
  70. <td>&nbsp;</td>
  71. <td>&nbsp;</td>
  72. <td>&nbsp;</td>
  73. </tr>
  74. </table>
  75. </body>
  76. </html>