12 lines
827 B
HTML
Executable File
12 lines
827 B
HTML
Executable File
<!-- 用户状态 开始 -->
|
|
<div class="am-form-group {{if !empty($module_data) and isset($module_data['is_row']) and $module_data['is_row'] eq 1}}row{{/if}}">
|
|
<label class="am-block">{{:MyLang('user_status_title')}}<span class="am-form-group-label-tips-must">*</span></label>
|
|
<div class="am-radio-group">
|
|
{{foreach :MyConst('common_user_status_list') as $v}}
|
|
<label class="am-radio-inline am-margin-right-sm">
|
|
<input type="radio" name="status" value="{{$v.id}}" {{if isset($data['status']) and $data['status'] eq $v['id']}}checked="checked"{{else /}}{{if !isset($data['status']) and isset($v['checked']) and $v['checked'] eq true}}checked="checked"{{/if}}{{/if}} data-am-ucheck /> {{$v.name}}
|
|
</label>
|
|
{{/foreach}}
|
|
</div>
|
|
</div>
|
|
<!-- 用户状态 结束 --> |