enterprise.html 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. {extend name="layout:home" /}
  2. {block name="container"}
  3. <div class="layui-tab layui-tab-card">
  4. <!--{include file="layout/admin_items" /}-->
  5. <ul class="layui-tab-title">
  6. <li style="background-color: #F2F2F2;border_right:1px solid #E6E6E6;border-bottom:1px solid #E6E6E6;">
  7. <a href="/Admin/Certification/personal.html">个人认证</a>
  8. </li>
  9. <li style="background-color: white;border-bottom:1px solid white;">
  10. <a href="/Admin/Certification/enterprise.html">企业认证</a>
  11. </li>
  12. <div class="tool-btns">
  13. <a href="javascript:location.reload();" title="刷新当前页面" class="iconfont icon-reload"></a>
  14. </div>
  15. </ul>
  16. <div class="layui-tab-content page-tab-content">
  17. <form method="post" id="export-form" action="{:url('Admin/Db/export')}">
  18. <div class="layui-tab-content page-tab-content">
  19. <table class="layui-table lay-even">
  20. <colgroup>
  21. <col width="120">
  22. <col width="90">
  23. <!--<col width="90">-->
  24. <col width="110">
  25. <col width="110">
  26. <col width="120">
  27. <col width="120">
  28. <col width="120">
  29. </colgroup>
  30. <thead>
  31. <tr>
  32. <!--<th><input type="checkbox" onclick="javascript:$('input[name*=tables]').prop('checked', this.checked);">全选</th>-->
  33. <th>用户登陆邮箱</th>
  34. <th>企业名称</th>
  35. <!--<th>企业地区</th>-->
  36. <th>企业所在地</th>
  37. <th>联系人姓名</th>
  38. <th>是否三证合一</th>
  39. <th>社会信用代码</th>
  40. <th>营业执照</th>
  41. <th>操作</th>
  42. </tr>
  43. </thead>
  44. <tbody>
  45. {notempty name="user_list"}
  46. {volist name="user_list" id="user"}
  47. <tr data-id="">
  48. <td class="align-center">
  49. {$user.user_email}
  50. </td>
  51. <td class="align-center">
  52. {$user.enterprise}
  53. </td>
  54. <!--<td class="align-center">-->
  55. <!--{$user.area}-->
  56. <!--</td>-->
  57. <td class="align-center">
  58. {$user.enterprise_location}
  59. </td>
  60. <td class="align-center">
  61. {$user.contact_name}
  62. </td>
  63. <td class="align-center">
  64. {$user.whether}
  65. </td>
  66. <td class="align-center">
  67. {$user.credit_code}
  68. </td>
  69. <td class="align-center">
  70. <img src="{$user.businesslicense}" alt="">
  71. </td>
  72. <td class="align-center">
  73. <div style="text-align: center;">
  74. <a href="/Admin/Certification/enterprise_detail.html?{$user.user_id}" class="layui-btn layui-btn-xs">详情</a>
  75. <!--<a href="" class="layui-btn layui-btn-xs layui-btn-danger">审核</a>-->
  76. </div>
  77. </td>
  78. </tr>
  79. {/volist}
  80. {else}
  81. <tr class="no_data">
  82. <td colspan="11">{$Think.lang.ds_no_record}</td>
  83. </tr>
  84. {/notempty}
  85. </tbody>
  86. </table>
  87. </div>
  88. </form>
  89. </div>
  90. </div>
  91. <script>
  92. </script>
  93. {/block}