vr-shopxo-source/application/admin/view/default/lib/is_show.html

12 lines
545 B
HTML
Raw Normal View History

2018-12-28 10:58:37 +00:00
<!-- 是否显示 开始 -->
<div class="am-form-group">
<label>是否显示</label>
<div>
2019-02-09 01:15:23 +00:00
{{foreach :lang('common_is_show_list') as $v}}
2018-12-28 10:58:37 +00:00
<label class="am-radio-inline m-r-10">
<input type="radio" name="is_show" value="{{$v.id}}" {{if isset($data['is_show']) and $data['is_show'] eq $v['id']}}checked="checked"{{else /}}{{if !isset($data['is_show']) and isset($v['checked']) and $v['checked'] eq true}}checked="checked"{{/if}}{{/if}} data-am-ucheck /> {{$v.name}}
</label>
{{/foreach}}
</div>
</div>
<!-- 是否显示 结束 -->