1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {extend name='admin@main'}
- {block name="content"}
- <div class="think-box-shadow">
- <table class="layui-table margin-top-10" lay-skin="line">
- {notempty name='list'}
- <thead>
- <tr>
- <th class='list-table-check-td think-checkbox'>
- <input data-auto-none data-check-target='.list-check-box' type='checkbox'>
- </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>
- <td class='list-table-check-td think-checkbox'>
- <input class="list-check-box" value='{$vo.id}' type='checkbox'>
- </td>
- <td class="text-left nowrap relative">
- {notempty name='vo.member.headimg'}
- <img data-tips-image style="width:40px;height:40px" src="{$vo.member.headimg|default=''}" class="margin-right-5 text-top">
- {/notempty}
- <div class="inline-block">
- 姓名:{$vo.member.name|default='--'}<br>
- 手机号:{$vo.member.phone|default='--'}<br>
- </div>
- </td>
- <td class='text-left nowrap'>{$film.name|default=''}</td>
- <td class='text-left nowrap'>{$vo.desc|default=''}</td>
- <td class='text-left nowrap'>
- {if $vo['images']}
- {foreach $vo['images'] as $v}
- <img data-tips-image style="width:40px;height:40px" src="{$v|default=''}" class="margin-right-5 text-top">
- {/foreach}
- {else}
- 暂无
- {/if}
- </td>
- <td class='text-left nowrap'>{$vo.create_at|default=''}</td>
- </tr>
- {/foreach}
- </tbody>
- </table>
- {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
- </div>
- {/block}
|