12 lines
576 B
HTML
Executable File
12 lines
576 B
HTML
Executable File
<!-- 是否包含头部 开始 -->
|
|
<div class="am-form-group">
|
|
<label>是否含头部</label>
|
|
<div>
|
|
{{foreach :lang('common_is_header_list') as $v}}
|
|
<label class="am-radio-inline m-r-10">
|
|
<input type="radio" name="is_header" value="{{$v.id}}" {{if isset($data['is_header']) and $data['is_header'] eq $v['id']}}checked="checked"{{else /}}{{if !isset($data['is_header']) and isset($v['checked']) and $v['checked'] eq true}}checked="checked"{{/if}}{{/if}} data-am-ucheck /> {{$v.name}}
|
|
</label>
|
|
{{/foreach}}
|
|
</div>
|
|
</div>
|
|
<!-- 是否包含头部 结束 --> |