accountList.jsp 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <%@ page contentType="text/html;charset=UTF-8"%>
  2. <%@ include file="/WEB-INF/include/taglibs.jsp"%>
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <%@include file="/WEB-INF/include/common.jsp" %>
  7. <script type="text/javascript">
  8. var buttonData = '${requestScope.buttons}';
  9. var functionId = '${functionId}';
  10. </script>
  11. <script type="text/javascript" src="${ctx}/script/sys/account/accountList.js"></script>
  12. </head>
  13. <body style="overflow-y:hidden" fit="true" scroll="no">
  14. <div id="tabs" class="easyui-tabs" fit="true">
  15. <div title="查询">
  16. <form id="searchForm" action="#" method="post">
  17. <table style="width:99%">
  18. <tr>
  19. <td class="title">账户名称:</td>
  20. <td>
  21. <input type="text" name="accountName" condition ='"operator":"like"' />
  22. </td>
  23. <td class="title">公司名称:</td>
  24. <td>
  25. <input type="text" name="companyName" condition ='"operator":"like"' />
  26. </td>
  27. <td class="title">账户类型:</td>
  28. <td>
  29. <select condition ='"operator":"in"' name="typeId" class="easyui-combobox" style="width:155px" data-options="multiple:true,editable:false,panelHeight:'auto'">${accountTypeList}</select>
  30. </td>
  31. </tr>
  32. <tr>
  33. <td class="title">所属行业:</td>
  34. <td>
  35. <select condition ='"operator":"in"' name="industryId" class="easyui-combobox" style="width:155px" data-options="multiple:true,editable:false,panelHeight:'auto'">${industryList}</select>
  36. </td>
  37. <td class="title">有效期:</td>
  38. <td colspan="3"><input class="easyui-datetimebox" name="valid" condition='"operator":">="'/> ~ <input class="easyui-datetimebox" name="valid" condition='"operator":"<="'/></td>
  39. </tr>
  40. <tr>
  41. <td colspan="6" align="right">
  42. <a id="searchBtn" href="#" class="easyui-linkbutton" data-options="iconCls:'icon-search'">查询</a>
  43. <a id="btnReset" href="#" class="easyui-linkbutton" data-options="iconCls:'icon-reset'">重置</a>
  44. </td>
  45. </tr>
  46. </table>
  47. </form>
  48. <div id="toolbar" class="toolbar"></div>
  49. <table id="accountTable">
  50. <thead>
  51. <tr>
  52. <th data-options="field:'ck',checkbox:true">编码</th>
  53. <th data-options="field:'accountId',align:'center'">账户编号</th>
  54. <th data-options="field:'typeId',align:'center',width:100">账户类型</th>
  55. <th data-options="field:'accountName',align:'center'">账户名称</th>
  56. <th data-options="field:'companyName',align:'center'">公司名称</th>
  57. <th data-options="field:'industryId',align:'center',width:100">所属行业</th>
  58. <th data-options="field:'accountContactor',align:'center',width:100">联系人</th>
  59. <th data-options="field:'phoneNumber',align:'center',width:100">联系电话</th>
  60. <th data-options="field:'fax',align:'center',width:100">传真</th>
  61. <th data-options="field:'adminUserName',align:'center',width:100">管理员姓名</th>
  62. <th data-options="field:'userLoginName',align:'center',width:100">用户名</th>
  63. <th data-options="field:'adminEmail',align:'center'">邮件</th>
  64. <th data-options="field:'accountState',align:'center',width:100">状态</th>
  65. </tr>
  66. </thead>
  67. </table>
  68. </div>
  69. <div title="内容">
  70. <iframe id="innerFrame" name="innerTab" scrolling="auto" frameborder="0" style="width:100%;height:99.4%;border:none"></iframe>
  71. </div>
  72. </div>
  73. </body>
  74. </html>