mirror of
https://github.com/yangzongzhuan/RuoYi.git
synced 2025-10-16 10:38:27 +00:00
122 lines
3.9 KiB
HTML
122 lines
3.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
|
|
<meta charset="utf-8">
|
|
<head th:include="include :: header"></head>
|
|
<body class="white-bg">
|
|
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
|
|
<form class="form-horizontal m" id="form-user-edit" th:object="${user}">
|
|
<input name="userId" type="hidden" th:field="*{userId}" />
|
|
<div class="form-group">
|
|
<label class="col-sm-3 control-label ">登录名称:</label>
|
|
<div class="col-sm-8">
|
|
<input class="form-control" type="text" readonly="true" th:field="*{loginName}"/>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="col-sm-3 control-label">部门名称:</label>
|
|
<div class="col-sm-8">
|
|
<input class="form-control" type="text" readonly="true" th:field="*{dept.deptName}">
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="col-sm-3 control-label">用户名称:</label>
|
|
<div class="col-sm-8">
|
|
<input class="form-control" type="text" name="userName" id="userName" th:field="*{userName}">
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="col-sm-3 control-label">邮箱:</label>
|
|
<div class="col-sm-8">
|
|
<input class="form-control" type="text" name="email" th:field="*{email}">
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="col-sm-3 control-label">手机:</label>
|
|
<div class="col-sm-8">
|
|
<input class="form-control" type="text" name="phonenumber" id="phonenumber" th:field="*{phonenumber}">
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="col-sm-3 control-label">性别:</label>
|
|
<div class="col-sm-8">
|
|
<div class="radio-box">
|
|
<input type="radio" id="radio1" th:field="*{sex}" name="sex" value="0">
|
|
<label for="radio1">男</label>
|
|
</div>
|
|
<div class="radio-box">
|
|
<input type="radio" id="radio2" th:field="*{sex}" name="sex" value="1">
|
|
<label for="radio2">女</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</form>
|
|
</div>
|
|
<div th:include="include::footer"></div>
|
|
<script>
|
|
$("#form-user-edit").validate({
|
|
rules:{
|
|
userName:{
|
|
required:true,
|
|
},
|
|
email:{
|
|
required:true,
|
|
email:true,
|
|
remote: {
|
|
url: ctx + "system/user/checkEmailUnique",
|
|
type: "post",
|
|
dataType: "json",
|
|
data: {
|
|
"userId": function() {
|
|
return $("#userId").val();
|
|
},
|
|
"email": function() {
|
|
return $.common.trim($("#email").val());
|
|
}
|
|
},
|
|
dataFilter: function (data, type) {
|
|
return $.validate.unique(data);
|
|
}
|
|
}
|
|
},
|
|
phonenumber:{
|
|
required:true,
|
|
isPhone:true,
|
|
remote: {
|
|
url: ctx + "system/user/checkPhoneUnique",
|
|
type: "post",
|
|
dataType: "json",
|
|
data: {
|
|
"userId": function() {
|
|
return $("#userId").val();
|
|
},
|
|
"phonenumber": function() {
|
|
return $.common.trim($("#phonenumber").val());
|
|
}
|
|
},
|
|
dataFilter: function (data, type) {
|
|
return $.validate.unique(data);
|
|
}
|
|
}
|
|
},
|
|
},
|
|
messages: {
|
|
"email": {
|
|
remote: "Email已经存在"
|
|
},
|
|
"phonenumber":{
|
|
remote: "手机号码已经存在"
|
|
}
|
|
},
|
|
focusCleanup: true
|
|
});
|
|
|
|
function submitHandler() {
|
|
if ($.validate.form()) {
|
|
$.operate.save(ctx + "system/user/profile/update", $('#form-user-edit').serialize());
|
|
}
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|