index.html 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {extend name='admin@main'}
  2. {block name="content"}
  3. <div class="think-box-shadow">
  4. {include file='integral/index_search'}
  5. <table class="layui-table margin-top-10" lay-skin="line">
  6. {notempty name='list'}
  7. <thead>
  8. <tr>
  9. <th class='text-left nowrap'>头像</th>
  10. <th class='text-left nowrap'>名称</th>
  11. <th class='text-left nowrap'>手机号</th>
  12. <th class='text-left nowrap'>明信片</th>
  13. <th class='text-left nowrap'>变更类型</th>
  14. <th class="text-center nowrap">时间</th>
  15. <th class="text-center nowrap">操作</th>
  16. </tr>
  17. </thead>
  18. {/notempty}
  19. <tbody>
  20. {foreach $list as $key=>$vo}
  21. <tr>
  22. <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>
  23. <td class='text-left nowrap'>{$vo.name|default='--'}</td>
  24. <td class='text-left nowrap'>{$vo.phone|default='--'}</td>
  25. <td class='text-left nowrap'>{$vo.crystal|default='--'}</td>
  26. <td class='text-left nowrap'>{$int_type[$vo.type]['desc']|default='--'}</td>
  27. <td class='text-center nowrap'>{$vo.create_at}</td>
  28. <td class='text-center nowrap'>
  29. <span class="layui-btn layui-btn-sm layui-btn-danger" onclick="btn_confirm('删除','del','{$vo.id}');">删 除</span>
  30. </td>
  31. </tr>
  32. {/foreach}
  33. </tbody>
  34. </table>
  35. {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
  36. </div>
  37. <script>
  38. function btn_confirm(msg,fun,id) {
  39. layer.confirm('请确定是否'+msg, {btn: ['确定', '取消'], title: "提示"}, function () {
  40. var url = "/store/integral/"+fun;
  41. layer.closeAll();
  42. $.ajax({
  43. type: "post",
  44. url: url,
  45. data: {id:id},
  46. dataType: "json",
  47. async: false,
  48. success: function (data) {
  49. layer.msg(data.info);
  50. setTimeout(function () {
  51. window.location.reload();
  52. },1000)
  53. }
  54. });
  55. });
  56. }
  57. </script>
  58. {/block}