12345678910111213141516171819202122232425262728293031323334 |
- {extend name='admin@main'}
- {block name="content"}
- <div class="think-box-shadow">
- {include file='user_wish/index_search'}
- <table class="layui-table margin-top-10" lay-skin="line">
- {notempty name='list'}
- <thead>
- <tr>
- <th class='text-left nowrap' style="width: 10%">头像</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='text-left nowrap'>{notempty name='vo.headimg'}<img data-tips-image style="width:20px;height:20px;vertical-align:top" src="{$vo.headimg|default=''}" class="margin-right-5">{/notempty}</td>
- <td class='text-left nowrap'><div class="inline-block">{$vo.user_name|default='--'}</div></td>
- <td class='text-left'>{$vo.title|default=''}</td>
- <td class='text-left'>{$vo.detail|default='--'}</td>
- <td class='text-left'>{$vo.phone|default='--'}</td>
- <td class='text-left'>{$vo.create_at|default='--'}</td>
- </tr>
- {/foreach}
- </tbody>
- </table>
- {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
- </div>
- {/block}
|