index.html 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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='recovery/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. <th class='text-left nowrap'></th>
  27. </tr>
  28. </thead>
  29. {/notempty}
  30. <tbody>
  31. {foreach $list as $key=>$vo}
  32. <tr data-dbclick>
  33. <td class='list-table-check-td think-checkbox'>
  34. <label><input class="list-check-box" value='{$vo.id}' type='checkbox'></label>
  35. </td>
  36. <td class='text-left nowrap'>
  37. {if !empty($vo.video)}
  38. <video src="{$vo.video|default=''}" controls="controls" height="16%">
  39. </video>
  40. {else}
  41. 无视频
  42. {/if}
  43. </td>
  44. <td class='text-left nowrap'>
  45. {foreach $vo.images as $k=>$v}
  46. <img data-tips-image style="width:60px;height:60px" src="{$v|default=''}" class="margin-right-5 text-top">
  47. {/foreach}
  48. </td>
  49. <td class='text-left nowrap'>{$vo.phone|default='-'}</td>
  50. <td class='text-left nowrap'>{$vo.title|default='-'}</td>
  51. <td class='text-left nowrap'>{$vo.number|default=0}</td>
  52. <td class='text-left nowrap'>{$vo.guige|default=0}</td>
  53. <td class='text-left nowrap'>{$vo.baozhuang|default=0}</td>
  54. <td class='text-left nowrap'>{eq name='vo.status' value='2'}<span class="color-red">已完成</span>{else}<span class="color-green">进行中</span>{/eq}</td>
  55. <td class='text-left nowrap'>{$vo.create_time}</td>
  56. <td class='text-left nowrap'>
  57. {if auth("edit")}
  58. <!-- <a data-dbclick class="layui-btn layui-btn-sm" data-title="编辑用户" data-modal='{:url("edit")}?id={$vo.id}'>编 辑</a>-->
  59. <!-- <button data-open='{:url("edit")}?id={$vo.id}' data-title="编 辑" class='layui-btn layui-btn-sm layui-btn-primary'>编 辑</button>-->
  60. {/if}
  61. <!-- <button data-open='{:url("bidding_join/index")}?id={$vo.id}' data-title="招标人员" class="layui-btn layui-btn-sm">招标人员</button>-->
  62. <!-- {if auth("remove")}-->
  63. <!-- <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>-->
  64. <!-- {/if}-->
  65. </td>
  66. </tr>
  67. {/foreach}
  68. </tbody>
  69. </table>
  70. {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
  71. </div>
  72. {/block}