@layout("/common/_container.html"){
<#input id="account" name="账户" underline="true" value="${user.account}"/> <#select id="sex" name="性别" underline="true"> @for(dict in constant.getDicts('性别')){ @} <#input id="roleid" name="角色" underline="true" value="${roleName}" disabled="disabled"/> <#input id="email" name="邮箱" type="email" value="${user.email}"/>
<#input id="name" name="姓名" underline="true" value="${user.name}"/> <#input id="birthday" name="出生日期" underline="true" type="date" value="${user.birthday}" clickFun="laydate({istime: false, format: 'YYYY-MM-DD'})" /> <#input id="citySel" name="部门" underline="true" readonly="readonly" hidden="deptid" hiddenValue="${user.deptid}" value="${deptName}" clickFun="UserInfoDlg.showDeptSelectTree(); return false;" style="background-color: #ffffff !important;"/> <#input id="phone" name="电话" value="${user.phone}"/>
<#button btnCss="info" name="提交" id="ensure" icon="fa-check" clickFun="UserInfoDlg.editSubmit()"/> <#button btnCss="danger" name="取消" id="cancel" icon="fa-eraser" clickFun="UserInfoDlg.close()"/>
@}