index.html 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <admintpl file="header" />
  2. </head>
  3. <body>
  4. <div class="wrap">
  5. <ul class="nav nav-tabs">
  6. <li class="active"><a >消息列表</a></li>
  7. <li ><a href="{:U('System/edit')}">发送消息</a></li>
  8. </ul>
  9. <form method="post" class="js-ajax-form" >
  10. <table class="table table-hover table-bordered">
  11. <thead>
  12. <tr>
  13. <th align="center">ID</th>
  14. <th>会员</th>
  15. <th>真实姓名</th>
  16. <th>手机号码</th>
  17. <th>审核状态</th>
  18. <th>提交时间</th>
  19. <th>处理时间</th>
  20. <th align="center">{:L('ACTIONS')}</th>
  21. </tr>
  22. </thead>
  23. <tbody>
  24. <foreach name="lists" item="vo">
  25. <tr>
  26. <td align="center">{$vo.id}</td>
  27. <td>{$vo['userinfo']['user_nicename']} ( {$vo['uid']} )</td>
  28. <td>{$vo['real_name']}</td>
  29. <td>{$vo['mobile']}</td>
  30. <td>{$status[$vo['status']]}</td>
  31. <td>{$vo.addtime|date="Y-m-d H:i:s",###}</td>
  32. <td>
  33. <if condition="$vo['status'] eq '0'" >
  34. 处理中
  35. <else/>
  36. {$vo.uptime|date="Y-m-d H:i:s",###}
  37. </if>
  38. </td>
  39. <td align="center">
  40. <a href="{:U('Userauth/edit',array('id'=>$vo['id']))}" >编辑</a>
  41. <!-- <a href="{:U('Cash/del',array('id'=>$vo['id']))}" class="js-ajax-dialog-btn" data-msg="您确定要删除吗?">删除</a> -->
  42. </td>
  43. </tr>
  44. </foreach>
  45. </tbody>
  46. </table>
  47. <div class="pagination">{$page}</div>
  48. </form>
  49. </div>
  50. <script src="__PUBLIC__/js/common.js"></script>
  51. </body>
  52. </html>