12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- {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='funding/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'>logo</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'>
- <img data-tips-image style="width:60px;height:60px" src="{$vo.logo|default=''}" class="margin-right-5 text-top">
- </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.title|default='-'}</td>
- <td class='text-left nowrap'>{$vo.price|default='-'}</td>
- <td class='text-left nowrap'>{$vo.number|default=0}</td>
- <td class='text-left nowrap'>{$vo.time|default=0}</td>
- <td class='text-left nowrap'>{eq name='vo.status' value='0'}<span class="color-red">已禁用</span>{else}<span class="color-green">使用中</span>{/eq}</td>
- <td class='text-left nowrap'>{$vo.create_time|format_datetime}</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("join/index")}?id={$vo.id}' data-title="众筹人员" class="layui-btn layui-btn-sm">众筹人员</button>
- {if $vo.status eq 1 and auth("forbid")}
- <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>
- {elseif $vo.status eq 0 and auth("resume")}
- <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>
- {/if}
- {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}
|