1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- {extend name='main'}
- {block name="button"}
- <!--{if auth("add")}-->
- <!--<button data-open='{:url("add")}' data-title="添加众筹项目" class='layui-btn layui-btn-sm layui-btn-primary'>添加众筹项目</button>-->
- <!--{/if}-->
- {/block}
- {block name="content"}
- <div class="think-box-shadow">
- {include file='recovery/index_search'}
- <table class="layui-table margin-top-10" lay-skin="line">
- {notempty name='list'}
- <thead>
- <tr>
- <th class='list-table-check-td think-checkbox'>
- <label><input data-auto-none data-check-target='.list-check-box' type='checkbox'></label>
- </th>
- <th class='text-left nowrap'>视频</th>
- <th class='text-left nowrap'>图片</th>
- <th class='text-left nowrap'>手机号</th>
- <th class='text-left nowrap'>标题</th>
- <th class='text-left nowrap'>数量</th>
- <th class='text-left nowrap'>规格</th>
- <th class='text-left nowrap'>包装</th>
- <th class='text-left nowrap'>状态</th>
- <th class='text-left nowrap'>发布时间</th>
- <th class='text-left nowrap'></th>
- </tr>
- </thead>
- {/notempty}
- <tbody>
- {foreach $list as $key=>$vo}
- <tr data-dbclick>
- <td class='list-table-check-td think-checkbox'>
- <label><input class="list-check-box" value='{$vo.id}' type='checkbox'></label>
- </td>
- <td class='text-left nowrap'>
- {if !empty($vo.video)}
- <video src="{$vo.video|default=''}" controls="controls" height="16%">
- </video>
- {else}
- 无视频
- {/if}
- </td>
- <td class='text-left nowrap'>
- {foreach $vo.images as $k=>$v}
- <img data-tips-image style="width:60px;height:60px" src="{$v|default=''}" class="margin-right-5 text-top">
- {/foreach}
- </td>
- <td class='text-left nowrap'>{$vo.phone|default='-'}</td>
- <td class='text-left nowrap'>{$vo.title|default='-'}</td>
- <td class='text-left nowrap'>{$vo.number|default=0}</td>
- <td class='text-left nowrap'>{$vo.guige|default=0}</td>
- <td class='text-left nowrap'>{$vo.baozhuang|default=0}</td>
- <td class='text-left nowrap'>{eq name='vo.status' value='2'}<span class="color-red">已完成</span>{else}<span class="color-green">进行中</span>{/eq}</td>
- <td class='text-left nowrap'>{$vo.create_time}</td>
- <td class='text-left nowrap'>
- {if auth("edit")}
- <!-- <a data-dbclick class="layui-btn layui-btn-sm" data-title="编辑用户" data-modal='{:url("edit")}?id={$vo.id}'>编 辑</a>-->
- <!-- <button data-open='{:url("edit")}?id={$vo.id}' data-title="编 辑" class='layui-btn layui-btn-sm layui-btn-primary'>编 辑</button>-->
- {/if}
- <!-- <button data-open='{:url("bidding_join/index")}?id={$vo.id}' data-title="招标人员" class="layui-btn layui-btn-sm">招标人员</button>-->
- <!-- {if auth("remove")}-->
- <!-- <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>-->
- <!-- {/if}-->
- </td>
- </tr>
- {/foreach}
- </tbody>
- </table>
- {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
- </div>
- {/block}
|