etms/WEB-INF/view/cetc54/role/role_edit.ftl

34 lines
1.4 KiB
Plaintext
Raw Normal View History

<div class="ui_dialog" id="dialog">
<form id="grid_form" method="post">
</form>
</div>
<script id="grid_form_temp" type="text/html">
<input type="hidden" id="hdID" value="{{id}}"/>
<div class="formTitle"><span class="icon icon_menu"></span>角色信息</div>
<table class="fromTable">
<tr>
<th>角色名称:</th>
<td><input id="name" name="name" class="ui_validate" type="text"
ui-config="required:true,width:400" value="{{name}}"/></td>
</tr>
<tr>
<th>角色类型:</th>
<td><input id="roletype" name="roletype" class="ui_validate" type="text"
ui-config="required:true,width:400,dictKey:'roletype'" value="{{roletype}}"/>
</td>
</tr>
<tr>
<th>当前状态:</th>
<td><input id="status" name="status" class="ui_validate" type="text"
ui-config="required:true,width:400,dictKey:'isenable'" value="{{status}}"/>
</td>
</tr>
<tr>
<th>备注:</th>
<td><textarea id="reamrk" name="reamrk" class="ui_validate"
ui-config="required:false,width:400,tipAfterInput:true,validType:'length[0,200]'"
value="{{reamrk}}"/>
</td>
</tr>
</table>
</script>