index.html 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {extend name='admin@main'}
  2. {block name="button"}
  3. <a href="javascript:history.go(-1);" data-title="返 回" class='layui-btn layui-btn-sm layui-btn-primary'>返 回</a>
  4. {/block}
  5. {block name="content"}
  6. <div class="think-box-shadow">
  7. {include file='wallet_info/index_search'}
  8. <table class="layui-table margin-top-10" lay-skin="line">
  9. {notempty name='list'}
  10. <thead>
  11. <tr>
  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. </tr>
  19. </thead>
  20. {/notempty}
  21. <tbody>
  22. {foreach $list as $key=>$vo}
  23. <tr>
  24. <td class='list-table-check-td think-checkbox'>{notempty name='vo.headimg'}<img data-tips-image style="width:20px;height:20px;vertical-align:top" src="{$vo.headimg|default=''}" class="margin-right-5">{/notempty}</td>
  25. <td class='text-left nowrap'>{$vo.name|default='--'}</td>
  26. <td class='text-left nowrap'>{$vo.phone|default='--'}</td>
  27. <td class='text-left nowrap'>{$vo.pm == 1 ? '': '-'}{$vo.change|default='--'}</td>
  28. <td class='text-left nowrap'>{$vo.title}</td>
  29. <td class='text-left nowrap'>{$vo.create_at}</td>
  30. </tr>
  31. {/foreach}
  32. </tbody>
  33. </table>
  34. {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
  35. </div>
  36. <script>
  37. function btn_confirm(msg,fun,id) {
  38. layer.confirm('请确定是否'+msg, {btn: ['确定', '取消'], title: "提示"}, function () {
  39. var url = "/user/crystal/"+fun;
  40. layer.closeAll();
  41. $.ajax({
  42. type: "post",
  43. url: url,
  44. data: {id:id},
  45. dataType: "json",
  46. async: false,
  47. success: function (data) {
  48. layer.msg(data.info);
  49. setTimeout(function () {
  50. window.location.reload();
  51. },1000)
  52. }
  53. });
  54. });
  55. }
  56. </script>
  57. {/block}