index.html 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {extend name='admin@main'}
  2. {block name="content"}
  3. <div class="think-box-shadow">
  4. {include file='member_basic/index_search'}
  5. <table class="layui-table margin-top-10" lay-skin="line">
  6. {notempty name='list'}
  7. <thead>
  8. <tr>
  9. <th class='list-table-check-td think-checkbox'>
  10. <input data-auto-none data-check-target='.list-check-box' type='checkbox'>
  11. </th>
  12. <th class='text-left nowrap'>序号</th>
  13. <th class='text-left nowrap'>昵称</th>
  14. <th class='text-left nowrap'>真实姓名</th>
  15. <th class='text-left nowrap'>性别</th>
  16. <th class='text-left nowrap'>身份证号</th>
  17. <th class='text-left nowrap'>年龄</th>
  18. <th class='text-left nowrap'>学历</th>
  19. <th class='text-left nowrap'>身高</th>
  20. <th class='text-left nowrap'>体重</th>
  21. <th class='text-left nowrap'>居住地</th>
  22. <th class='text-left nowrap'>个人生活照</th>
  23. <th class='text-left nowrap'>手机号</th>
  24. <th class='text-left nowrap'>提交时间</th>
  25. <th class='text-left nowrap'>驳回原因</th>
  26. <th class='text-left nowrap'>操作</th>
  27. </tr>
  28. </thead>
  29. {/notempty}
  30. <tbody>
  31. {foreach $list as $key=>$vo}
  32. <tr>
  33. <td class='list-table-check-td think-checkbox'>
  34. <label><input class="list-check-box" value='{$vo.id}' type='checkbox'></label>
  35. </td>
  36. <td class='list-table-check-td think-checkbox'>
  37. <div class="inline-block">{$vo.id|default='--'}</div>
  38. </td>
  39. <td class='text-left nowrap'>
  40. <div class="inline-block">{$vo.nickname|default='--'}</div>
  41. </td>
  42. <td class='text-left nowrap'>
  43. <div class="inline-block">{$vo.username|default='--'}</div>
  44. </td>
  45. <td class='text-left'>
  46. {if $vo.sex eq 1} 男
  47. {elseif $vo.sex eq 2} 女
  48. {/if}
  49. </td>
  50. <td class='text-left'>{$vo.ID_car|default='--'}</td>
  51. <td class='text-left'>{$vo.age|default='--'}</td>
  52. <td class='text-left'>{$vo.education|default='--'}</td>
  53. <td class='text-left'>{$vo.height|default='--'}</td>
  54. <td class='text-left'>{$vo.weight|default='--'}</td>
  55. <td class='text-left'>{$vo.area_id|default='--'}</td>
  56. <td> <img data-tips-image style="width:20px;height:20px;vertical-align:top" src="{$vo.headimg|default=''}" class="margin-right-5"></td>
  57. <td class='text-left'>{$vo.phone|default='--'}</td>
  58. <td class='text-left'>{$vo.create_at|format_datetime}</td>
  59. <td class='text-left'>{$vo.reason|default='--'}</td>
  60. <td class='text-left'>
  61. {if $vo.state==0}
  62. <a data-dbclick data-title="审核" class="layui-btn layui-btn-xs" data-modal='{:url("edit")}?id={$vo.id}'>审 核</a>
  63. {/if}
  64. {if $vo.state==1}
  65. 审核通过
  66. {/if}
  67. {if $vo.state==2}
  68. 已拒绝
  69. {/if}
  70. </td>
  71. </tr>
  72. {/foreach}
  73. </tbody>
  74. </table>
  75. {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
  76. </div>
  77. {/block}