mirror of
https://github.com/201206030/novel-plus.git
synced 2025-04-26 17:20:52 +00:00
109 lines
4.3 KiB
Java
109 lines
4.3 KiB
Java
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head th:replace="common/header :: common_head(~{::title},~{},~{::link},~{})">
|
|
<title th:text="'修改性别_'+${application.website.name}"></title>
|
|
<link rel="stylesheet" href="/css/user.css"/>
|
|
</head>
|
|
<body class="">
|
|
|
|
<div th:replace="common/top :: top('')">
|
|
</div>
|
|
<div class="main box_center cf">
|
|
<div class="userBox cf">
|
|
<div class="my_l">
|
|
|
|
<ul class="log_list">
|
|
<li><a class="link_1 " href="/user/userinfo.html">个人中心</a></li>
|
|
<li><a class="link_4" href="/user/favorites.html">我的书架</a></li>
|
|
<li><a class="link_6" href="/user/comment.html">我的书评</a></li>
|
|
<li><a class="link_7 " href="/user/feedback_list.html">我的反馈</a></li>
|
|
<li><a class="link_8 on" href="/user/setup.html">账号设置</a></li>
|
|
</ul>
|
|
|
|
</div>
|
|
<div class="my_r">
|
|
<div class="my_info cf">
|
|
<div class="my_info_txt">
|
|
<div class="aspNetHidden">
|
|
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKLTkyODgwMDQwMA9kFgJmD2QWAmYPFgIeBFRleHQFqAE8YSBocmVmPSIvc2VhcmNoLmFzcHg/c2VhcmNoS2V5PeWWu+Wuiembr++8jOeLhOazve+8jOeBteW8gu+8jOWJjeS4luS7iueUn++8jOWGpeeOi+msvOWkqyIgdGFyZ2V0PSJfYmxhbmsiPuWWu+Wuiembr++8jOeLhOazve+8jOeBteW8gu+8jOWJjeS4luS7iueUn++8jOWGpeeOi+msvOWkqzwvYT5kZMZ5uDacrADq981tXsiwhce7e3YhhhJ5JQQTUHxIrSut" />
|
|
</div>
|
|
|
|
<div class="aspNetHidden">
|
|
|
|
<input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="5DBBC1A2" />
|
|
<input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="/wEdAAIB0+ZH6KYdr1mTvok41QcAdGBMnbkVaKBt4WvzhWCjFyKLzSsxk3yjFX2xXrDnmlabnJvU11tPMoHIge4rg3hW" />
|
|
</div>
|
|
<ul class="mytab_list">
|
|
<li><i class="tit">我的性别</i>
|
|
<label><input type="radio" name="sex" value="0" /> 男生</label>
|
|
<label><input class="ml20" type="radio" name="sex" value="1" checked /> 女生</label>
|
|
</li>
|
|
<li class="mt20"><i class="tit"> </i><input type="button" onclick="updateSex()" name="btn" value="修改" id="btn" class="s_btn btn_red" /></li>
|
|
<li><i class="tit"> </i><span id="LabErr"></span></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div th:replace="common/footer :: footer">
|
|
</div>
|
|
<div th:replace="common/js :: js"></div>
|
|
<script type="text/javascript">
|
|
//查询用户信息
|
|
$.ajax({
|
|
type: "get",
|
|
url: "/user/userInfo",
|
|
data: {},
|
|
dataType: "json",
|
|
success: function (data) {
|
|
if (data.code == 200) {
|
|
if(data.data.userSex === '0'){
|
|
$("input[name=sex]").eq(0).attr("checked",true);
|
|
}
|
|
|
|
|
|
|
|
} else if (data.code == 1001) {
|
|
//未登录
|
|
location.href = '/user/login.html?originUrl=' + decodeURIComponent(location.href);
|
|
|
|
} else {
|
|
layer.alert(data.msg);
|
|
}
|
|
|
|
},
|
|
error: function () {
|
|
layer.alert('网络异常');
|
|
}
|
|
})
|
|
function updateSex() {
|
|
$.ajax({
|
|
type: "POST",
|
|
url: "/user/updateUserInfo",
|
|
data: {'userSex':$("input[name=sex]:checked").val()},
|
|
dataType: "json",
|
|
success: function (data) {
|
|
if (data.code == 200) {
|
|
window.location.href = '/user/setup.html';
|
|
|
|
} else if (data.code == 1001) {
|
|
//未登录
|
|
location.href = '/user/login.html?originUrl=' + decodeURIComponent(location.href);
|
|
|
|
} else {
|
|
layer.alert(data.msg);
|
|
}
|
|
|
|
},
|
|
error: function () {
|
|
layer.alert('网络异常');
|
|
}
|
|
})
|
|
}
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|