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

12 lines
579 B
HTML
Executable File

<!-- 是否显示 开始 -->
<div class="am-form-group">
<label>{{:L('common_view_is_show_title')}}</label>
<div>
<foreach name="common_is_show_list" item="v">
<label class="am-radio-inline m-r-10">
<input type="radio" name="is_show" value="{{$v.id}}" <if condition="isset($data['is_show']) and $data['is_show'] eq $v['id']">checked="checked"<else /><if condition="!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>
<!-- 是否显示 结束 -->