13 lines
601 B
HTML
13 lines
601 B
HTML
<ul class="am-nav am-nav-pills table-nav second-nav">
|
|
{{if !empty($nav_data) and is_array($nav_data)}}
|
|
{{foreach $nav_data as $v}}
|
|
<li {{if $nav_type eq $v['type']}}class="am-active"{{/if}} data-type="{{$v.type}}">
|
|
<a href="{{:MyUrl('admin/agreement/index', ['nav_type'=>$v['type']])}}">{{$v.name}}</a>
|
|
</li>
|
|
{{/foreach}}
|
|
{{/if}}
|
|
</ul>
|
|
<div class="am-alert am-radius am-margin-horizontal-sm am-margin-bottom-0" data-am-alert>
|
|
<button type="button" class="am-close">×</button>
|
|
<p>{{:MyLang('agreement.top_tips')}}</p>
|
|
</div> |