12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <%@ page contentType="text/html;charset=UTF-8"%>
- <%@ include file="/WEB-INF/include/taglibs.jsp"%>
- <!DOCTYPE html>
- <html>
- <head>
- <%@include file="/WEB-INF/include/common.jsp" %>
- <script type="text/javascript">
- var buttonData = '${requestScope.buttons}';
- var functionId = '${functionId}';
- </script>
- <script type="text/javascript" src="${ctx}/script/sys/account/accountList.js"></script>
- </head>
- <body style="overflow-y:hidden" fit="true" scroll="no">
- <div id="tabs" class="easyui-tabs" fit="true">
- <div title="查询">
- <form id="searchForm" action="#" method="post">
- <table style="width:99%">
- <tr>
- <td class="title">账户名称:</td>
- <td>
- <input type="text" name="accountName" condition ='"operator":"like"' />
- </td>
- <td class="title">公司名称:</td>
- <td>
- <input type="text" name="companyName" condition ='"operator":"like"' />
- </td>
- <td class="title">账户类型:</td>
- <td>
- <select condition ='"operator":"in"' name="typeId" class="easyui-combobox" style="width:155px" data-options="multiple:true,editable:false,panelHeight:'auto'">${accountTypeList}</select>
- </td>
- </tr>
- <tr>
- <td class="title">所属行业:</td>
- <td>
- <select condition ='"operator":"in"' name="industryId" class="easyui-combobox" style="width:155px" data-options="multiple:true,editable:false,panelHeight:'auto'">${industryList}</select>
- </td>
- <td class="title">有效期:</td>
- <td colspan="3"><input class="easyui-datetimebox" name="valid" condition='"operator":">="'/> ~ <input class="easyui-datetimebox" name="valid" condition='"operator":"<="'/></td>
- </tr>
- <tr>
- <td colspan="6" align="right">
- <a id="searchBtn" href="#" class="easyui-linkbutton" data-options="iconCls:'icon-search'">查询</a>
- <a id="btnReset" href="#" class="easyui-linkbutton" data-options="iconCls:'icon-reset'">重置</a>
- </td>
- </tr>
- </table>
- </form>
-
- <div id="toolbar" class="toolbar"></div>
-
- <table id="accountTable">
- <thead>
- <tr>
- <th data-options="field:'ck',checkbox:true">编码</th>
- <th data-options="field:'accountId',align:'center'">账户编号</th>
- <th data-options="field:'typeId',align:'center',width:100">账户类型</th>
- <th data-options="field:'accountName',align:'center'">账户名称</th>
- <th data-options="field:'companyName',align:'center'">公司名称</th>
- <th data-options="field:'industryId',align:'center',width:100">所属行业</th>
- <th data-options="field:'accountContactor',align:'center',width:100">联系人</th>
- <th data-options="field:'phoneNumber',align:'center',width:100">联系电话</th>
- <th data-options="field:'fax',align:'center',width:100">传真</th>
- <th data-options="field:'adminUserName',align:'center',width:100">管理员姓名</th>
- <th data-options="field:'userLoginName',align:'center',width:100">用户名</th>
- <th data-options="field:'adminEmail',align:'center'">邮件</th>
- <th data-options="field:'accountState',align:'center',width:100">状态</th>
- </tr>
- </thead>
- </table>
- </div>
- <div title="内容">
- <iframe id="innerFrame" name="innerTab" scrolling="auto" frameborder="0" style="width:100%;height:99.4%;border:none"></iframe>
- </div>
- </div>
- </body>
- </html>
|