| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- <!DOCTYPE HTML>
- <html xmlns:th="http://www.thymeleaf.org"
- xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
- layout:decorate="~{admin/common/common}">
- <head>
- <title>企业注册审核</title>
- <style>
- #form-content-edit{padding-top:70px}
- /*.input-text{padding:0px;}*/
- .text-c label { text-align: right; padding-right: 0;}
- .text-c>div>input{margin-top:5px;display:inline-block;}
- .text-c>label{margin-top:5px;display:inline-block;}
- .cl .l .layui-upload-file{display: none;}
- </style>
- </head>
- <body layout:fragment="content">
- <nav class="breadcrumb">
- <i class="Hui-iconfont"></i>
- 首页
- <span class="c-gray en">></span>待审核<span class="c-gray en"></span>
- <a class="btn btn-success radius r" style="line-height:1.6em;margin-top:3px" href="javascript:location.replace(location.href);" title="刷新" >
- <i class="Hui-iconfont"></i>
- </a>
- </nav>
- <form id="myForm" th:action="@{/register/already_list}" th:method="get" >
- <div class="page-container">
- <div class="text-c">
- <input type="text" class="input-text" style="width:250px" placeholder="请输入企业名称进行查询" id="keyword" name="keyword" th:value="${keyword}"/>
- <input type="button" value="搜索" class="btn btn-primary" onclick="$('#myForm').submit();">
- <a class="btn btn-primary" onclick="showHideSearch()">高级搜索</a>
- </div>
- <div class="text-c" id="searchSection" style="display:none;">
- <label class="conditionLabel" >组织机构代码:</label>
- <input type="text" class="input-text" style="width:200px" placeholder="请输入组织机构代码" id="keyword" name="organization_code" th:value="${searchCondition.organization_code}"/>
- <label class="conditionLabel" >账号名:</label>
- <input type="text" class="input-text" style="width:200px" placeholder="请输入账号名" id="keyword" name="nick_name" th:value="${searchCondition.nick_name}"/>
- <label class="conditionLabel" >姓名:</label>
- <input type="text" class="input-text" style="width:200px" placeholder="请输入姓名" id="keyword" name="user_name" th:value="${searchCondition.user_name}"/>
- <label class="conditionLabel" >手机号:</label>
- <input type="text" class="input-text" style="width:200px" placeholder="请输入手机号" id="keyword" name="phone" th:value="${searchCondition.phone}"/>
- </div>
- <div class="cl pd-5 bg-1 bk-gray mt-20">
- <span class="r">共有数据:<strong th:text="${pageInfo.total}" id="total">54</strong> 条</span><!-- -->
- </div>
- <table class="table table-border table-bordered table-bg table-hover">
- <thead>
- <tr class="text-c">
- <th width="25"><input type="checkbox" name="" value=""/></th>
- <th>序号</th>
- <th>企业名称</th>
- <th>组织机构代码</th>
- <th>账号名</th>
- <th>姓名</th>
- <th>手机号</th>
- <th>状态</th>
- <th >操作</th>
- </tr>
- </thead>
- <tbody>
- <tr class="text-c" th:each="model,iterStat:${pageInfo.list}" th:object="${model}">
- <td><input type="checkbox" th:value="*{id}" th:id="${iterStat.index+1}" name="id"/></td>
- <td th:text="${iterStat.index+1}"></td>
- <td th:text="*{company_name}"></td>
- <td th:text="*{organization_code}"></td>
- <td th:text="*{nick_name}"></td>
- <td th:text="*{user_name}"></td>
- <td th:text="*{phone}"></td>
- <td class="td-status">
- <span class="label radius" th:unless="*{is_start}">禁用</span>
- <span class="label radius label-success" th:if="*{is_start}">启用</span>
- </td>
- <td class="td-manage">
- <a title="详情" href="javascript:;" th:onclick="'javascript:details(\'企业详情\',\'/register/details?id='+*{id}+'\');'"
- class="ml-5" style="text-decoration:none"><i class="Hui-iconfont">详情</i></a>
- </td>
- </tr>
- </tbody>
- </table>
- <div th:replace="admin/common/page :: page"></div>
- </div>
- </form>
- <script type="text/javascript" th:src="@{/js/common/page.js}"></script>
- <script th:inline="javascript">
- function details(title, url, w, h) {
- var index = layer_show(title, pagePath+url, w, h);
- //默认全屏
- layer.full(index);
- }
- function approval(title, url, w, h) {
- var index = layer_show(title, pagePath+url, w, h);
- //默认全屏
- layer.full(index);
- }
- //显示隐藏高级搜索
- function showHideSearch(){
- if($("#searchSection").is(":hidden")){
- $("#searchSection").show();
- }else{
- $("#searchSection").hide();
- }
- }
- </script>
- </body>
- </html>
|