人人商城

nav.html 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {template 'common/header'}
  2. {if $do == 'home' || $do == 'profile'}
  3. {if $do == 'home'}
  4. <div class="panel panel-warning">
  5. <div class="panel-body">
  6. 当前使用的风格为:{$style['name']},模板文件为:{$template['title']}(/app/themes/{$template['name']})。{if !empty($template['sections'])}此模板提供 <span class="label label-warning">{$template['sections']}</span> 个导航位置,您可以指定导航在特定的位置显示,未指位置的导航将无法显示{else}此模板未提供导航位置功能{/if}
  7. </div>
  8. </div>
  9. {/if}
  10. <table class="table we7-table table-hover">
  11. <col width="130px" />
  12. <col width="150px" />
  13. <col width="350px" />
  14. <col width="" />
  15. <tr>
  16. <th>标题</th>
  17. <th>图标</th>
  18. <th>链接</th>
  19. <th>操作</th>
  20. </tr>
  21. {loop $entries $menu}
  22. <tr ng-repeat="menu in homeMenu">
  23. <td class="title">{$menu['title']}</td>
  24. <td><i class="{$menu['icon']}"></i></td>
  25. <td><a href="javascript:;" class="url" data-url="{$menu['url']}">{$menu['url']}</a></td>
  26. <script>
  27. $('.url').each(function() {
  28. util.clip(this, $('.url').data('url'));
  29. });
  30. $('.url').click(function() {
  31. util.clip(this, $(this).data('url'));
  32. });
  33. </script>
  34. <td class="edit">
  35. <a href="{php echo url('site/multi')}">跳转至“微官网”设置</a>
  36. </td>
  37. </tr>
  38. {/loop}
  39. </table>
  40. {/if}
  41. {template 'common/footer'}