index.html 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {extend name='admin@main'}
  2. {block name="content"}
  3. <div class="think-box-shadow">
  4. <table class="layui-table margin-top-10" lay-skin="line">
  5. {notempty name='list'}
  6. <thead>
  7. <tr>
  8. <th class='text-left nowrap' width="15%">公司网址</th>
  9. <th class='text-left nowrap' width="13%">公司电话</th>
  10. <th class='text-left nowrap' width="13%">客服QQ</th>
  11. <th class='text-left nowrap' width="25%">品牌保障</th>
  12. <th class='text-left nowrap' width="20%">营业执照</th>
  13. <th>操作</th>
  14. </tr>
  15. </thead>
  16. {/notempty}
  17. <tbody>
  18. {foreach $list as $key=>$vo}
  19. <tr data-dbclick>
  20. <td class='text-left nowrap'>{$vo.website|default='--'}</td>
  21. <td class='text-left nowrap'>{$vo.phone|default='--'}</td>
  22. <td class='text-left nowrap'>{$vo.qq|default='--'}</td>
  23. <td class='text-left nowrap'>
  24. {if $vo['brand_protection']}
  25. {foreach $vo['brand_protection'] as $v}
  26. <img data-tips-image style="width:40px;height:40px" src="{$v|default=''}" class="margin-right-5 text-top">
  27. {/foreach}
  28. {else}
  29. 暂无
  30. {/if}
  31. </td>
  32. <td class='text-left nowrap'>
  33. {if $vo['license']}
  34. {foreach $vo['license'] as $v}
  35. <img data-tips-image style="width:40px;height:40px" src="{$v|default=''}" class="margin-right-5 text-top">
  36. {/foreach}
  37. {else}
  38. 暂无
  39. {/if}
  40. </td>
  41. <td class='text-left nowrap'>
  42. <div class="nowrap margin-bottom-5">
  43. <a data-dbclick class="layui-btn layui-btn-sm" data-open='{:url("edit")}?id={$vo.id}'>编 辑</a>
  44. </div>
  45. </td>
  46. </tr>
  47. {/foreach}
  48. </tbody>
  49. </table>
  50. {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
  51. </div>
  52. {/block}