| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- {extend name="layout:home" /}
- {block name="container"}
- <div class="layui-tab layui-tab-card">
- <!--{include file="layout/admin_items" /}-->
- <ul class="layui-tab-title">
- <li style="background-color: #F2F2F2;border_right:1px solid #E6E6E6;border-bottom:1px solid #E6E6E6;">
- <a href="/Admin/Certification/personal.html">个人认证</a>
- </li>
- <li style="background-color: white;border-bottom:1px solid white;">
- <a href="/Admin/Certification/enterprise.html">企业认证</a>
- </li>
- <div class="tool-btns">
- <a href="javascript:location.reload();" title="刷新当前页面" class="iconfont icon-reload"></a>
- </div>
- </ul>
- <div class="layui-tab-content page-tab-content">
- <form method="post" id="export-form" action="{:url('Admin/Db/export')}">
- <div class="layui-tab-content page-tab-content">
- <table class="layui-table lay-even">
- <colgroup>
- <col width="120">
- <col width="90">
- <!--<col width="90">-->
- <col width="110">
- <col width="110">
- <col width="120">
- <col width="120">
- <col width="120">
- </colgroup>
- <thead>
- <tr>
- <!--<th><input type="checkbox" onclick="javascript:$('input[name*=tables]').prop('checked', this.checked);">全选</th>-->
- <th>用户登陆邮箱</th>
- <th>企业名称</th>
- <!--<th>企业地区</th>-->
- <th>企业所在地</th>
- <th>联系人姓名</th>
- <th>是否三证合一</th>
- <th>社会信用代码</th>
- <th>营业执照</th>
- <th>操作</th>
- </tr>
- </thead>
- <tbody>
- {notempty name="user_list"}
- {volist name="user_list" id="user"}
- <tr data-id="">
- <td class="align-center">
- {$user.user_email}
- </td>
- <td class="align-center">
- {$user.enterprise}
- </td>
- <!--<td class="align-center">-->
- <!--{$user.area}-->
- <!--</td>-->
- <td class="align-center">
- {$user.enterprise_location}
- </td>
- <td class="align-center">
- {$user.contact_name}
- </td>
- <td class="align-center">
- {$user.whether}
- </td>
- <td class="align-center">
- {$user.credit_code}
- </td>
- <td class="align-center">
- <img src="{$user.businesslicense}" alt="">
- </td>
- <td class="align-center">
- <div style="text-align: center;">
- <a href="/Admin/Certification/enterprise_detail.html?{$user.user_id}" class="layui-btn layui-btn-xs">详情</a>
- <!--<a href="" class="layui-btn layui-btn-xs layui-btn-danger">审核</a>-->
- </div>
- </td>
- </tr>
- {/volist}
- {else}
- <tr class="no_data">
- <td colspan="11">{$Think.lang.ds_no_record}</td>
- </tr>
- {/notempty}
- </tbody>
- </table>
- </div>
- </form>
- </div>
- </div>
- <script>
- </script>
- {/block}
|