1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- {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='text-left nowrap' width="15%">公司网址</th>
- <th class='text-left nowrap' width="13%">公司电话</th>
- <th class='text-left nowrap' width="13%">客服QQ</th>
- <th class='text-left nowrap' width="25%">品牌保障</th>
- <th class='text-left nowrap' width="20%">营业执照</th>
- <th>操作</th>
- </tr>
- </thead>
- {/notempty}
- <tbody>
- {foreach $list as $key=>$vo}
- <tr data-dbclick>
- <td class='text-left nowrap'>{$vo.website|default='--'}</td>
- <td class='text-left nowrap'>{$vo.phone|default='--'}</td>
- <td class='text-left nowrap'>{$vo.qq|default='--'}</td>
- <td class='text-left nowrap'>
- {if $vo['brand_protection']}
- {foreach $vo['brand_protection'] 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'>
- {if $vo['license']}
- {foreach $vo['license'] 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'>
- <div class="nowrap margin-bottom-5">
- <a data-dbclick class="layui-btn layui-btn-sm" data-open='{:url("edit")}?id={$vo.id}'>编 辑</a>
- </div>
- </td>
- </tr>
- {/foreach}
- </tbody>
- </table>
- {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
- </div>
- {/block}
|