index.html 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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'>用户名</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'>{$vo.nickname|default='-'}</td>
  36. <td class='text-left nowrap'>
  37. <img data-tips-image style="width:60px;height:60px" src="{$vo.avatar|default=''}" class="margin-right-5 text-top">
  38. </td>
  39. <td class='text-left nowrap'>{$vo.phone|default='-'}</td>
  40. <td class='text-left nowrap'>{$vo.touru|default='-'}</td>
  41. <td class='text-left nowrap'>{$vo.number|default=0}</td>
  42. <td class='text-left nowrap'>{$vo.shouyi|default=0}</td>
  43. <td class='text-left nowrap'>
  44. <img data-tips-image style="width:60px;height:60px" src="{$vo.image|default=''}" class="margin-right-5 text-top">
  45. </td>
  46. <td class='text-left nowrap'>{$vo.buy_time|format_datetime}</td>
  47. <td class='text-left nowrap'>
  48. <a data-dbclick class="layui-btn layui-btn-sm" data-title="修改收益" data-modal='{:url("edit")}?id={$vo.id}'>修改收益</a>
  49. </td>
  50. </tr>
  51. {/foreach}
  52. </tbody>
  53. </table>
  54. {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
  55. </div>
  56. {/block}