index.html 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {extend name='main'}
  2. {block name="button"}
  3. <!--{if auth("add")}-->
  4. <button data-open='{:url("add")}' data-title="添加众筹项目" class='layui-btn layui-btn-sm layui-btn-primary'>添加众筹项目</button>
  5. <!--{/if}-->
  6. {/block}
  7. {block name="content"}
  8. <div class="think-box-shadow">
  9. {include file='funding/index_search'}
  10. <table class="layui-table margin-top-10" lay-skin="line">
  11. {notempty name='list'}
  12. <thead>
  13. <tr>
  14. <th class='list-table-check-td think-checkbox'>
  15. <label><input data-auto-none data-check-target='.list-check-box' type='checkbox'></label>
  16. </th>
  17. <th class='text-left nowrap'>logo</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. </tr>
  27. </thead>
  28. {/notempty}
  29. <tbody>
  30. {foreach $list as $key=>$vo}
  31. <tr data-dbclick>
  32. <td class='list-table-check-td think-checkbox'>
  33. <label><input class="list-check-box" value='{$vo.id}' type='checkbox'></label>
  34. </td>
  35. <td class='text-left nowrap'>
  36. <img data-tips-image style="width:60px;height:60px" src="{$vo.logo|default=''}" class="margin-right-5 text-top">
  37. </td>
  38. <td class='text-left nowrap'>
  39. {foreach $vo.images as $k=>$v}
  40. <img data-tips-image style="width:60px;height:60px" src="{$v|default=''}" class="margin-right-5 text-top">
  41. {/foreach}
  42. </td>
  43. <td class='text-left nowrap'>{$vo.title|default='-'}</td>
  44. <td class='text-left nowrap'>{$vo.price|default='-'}</td>
  45. <td class='text-left nowrap'>{$vo.number|default=0}</td>
  46. <td class='text-left nowrap'>{$vo.time|default=0}</td>
  47. <td class='text-left nowrap'>{eq name='vo.status' value='0'}<span class="color-red">已禁用</span>{else}<span class="color-green">使用中</span>{/eq}</td>
  48. <td class='text-left nowrap'>{$vo.create_time|format_datetime}</td>
  49. <td class='text-left nowrap'>
  50. {if auth("edit")}
  51. <!-- <a data-dbclick class="layui-btn layui-btn-sm" data-title="编辑用户" data-modal='{:url("edit")}?id={$vo.id}'>编 辑</a>-->
  52. <button data-open='{:url("edit")}?id={$vo.id}' data-title="编 辑" class='layui-btn layui-btn-sm layui-btn-primary'>编 辑</button>
  53. {/if}
  54. <button data-open='{:url("join/index")}?id={$vo.id}' data-title="众筹人员" class="layui-btn layui-btn-sm">众筹人员</button>
  55. {if $vo.status eq 1 and auth("forbid")}
  56. <a class="layui-btn layui-btn-sm layui-btn-warm" data-action="{:url('forbid')}" data-value="id#{$vo.id};status#0" data-csrf="{:systoken('forbid')}">禁 用</a>
  57. {elseif $vo.status eq 0 and auth("resume")}
  58. <a class="layui-btn layui-btn-sm layui-btn-warm" data-action="{:url('resume')}" data-value="id#{$vo.id};status#1" data-csrf="{:systoken('resume')}">启 用</a>
  59. {/if}
  60. {if auth("remove")}
  61. <a class="layui-btn layui-btn-sm layui-btn-danger" data-confirm="确定要删除该用户吗?" data-action="{:url('remove')}" data-value="id#{$vo.id}" data-csrf="{:systoken('remove')}">删 除</a>
  62. {/if}
  63. </td>
  64. </tr>
  65. {/foreach}
  66. </tbody>
  67. </table>
  68. {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
  69. </div>
  70. {/block}