🍺 添加用户管理界面

This commit is contained in:
sunxiaolong
2024-07-03 22:11:38 +08:00
parent feaa7382e6
commit da05c0aa25
5 changed files with 42 additions and 28 deletions

View File

@@ -1,6 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="zh">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
@@ -15,7 +14,6 @@
overflow-y: hidden;
overflow-x: hidden;
}
.middle {
position: absolute;
top: 50px;
@@ -33,16 +31,13 @@
overflow: auto;
box-sizing: border-box;
}
.middle .sider-left .sider-bar {
height: auto;
width: 100%;
}
.middle .sider-left li {
list-style: none;
}
.middle .sider-right {
float: right;
bottom: 30px;
@@ -52,16 +47,13 @@
overflow: auto;
box-sizing: border-box;
}
.middle .sider-right .main {
height: auto;
width: 100%;
}
.middle .sider-left .divider {
border-top: 1px solid #e7e7e7;
}
.middle .sider-left .first-menu {
position: relative;
display: inline-block;
@@ -75,7 +67,6 @@
border-top: 1px solid #e7e7e7;
border-bottom: 1px solid #e7e7e7;
}
.middle .sider-left .first-menu-main {
position: relative;
display: inline-block;
@@ -89,18 +80,15 @@
border-top: 1px solid #e7e7e7;
border-bottom: 1px solid #e7e7e7;
}
.middle .sider-left .first-menu .first-title {
display: inline-block;
}
.middle .sider-left .last-glyphicon {
position: absolute;
right: 2px;
top: 50%;
transform: translateY(-50%);
}
.middle .sider-left .second-menu a {
display: block;
width: 100%;
@@ -111,11 +99,9 @@
font-size: 13px;
color: #777777;
}
.middle .sider-left .second-menu a:last-child {
margin-bottom: 30px;
}
.footer {
width: 100%;
border: 2px solid #e7e7e7;
@@ -125,9 +111,7 @@
}
</style>
</head>
<body>
<!-- 更改密码的模态框 -->
<div class="modal fade" id="logoutModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"
data-keyboard="false">
@@ -139,7 +123,6 @@
</button>
<h4 class="modal-title" id="myModalLabel">用户密码更改</h4>
</div>
<div class="modal-body">
<p class="color-red text-center">温馨提示新密码字为8~16个字符字母和数字组成。</p>
<div class="row margin-top-20">
@@ -183,7 +166,6 @@
</div>
</div>
</div>
<div class="modal fade" id="totpModal" tabindex="-1" role="dialog" aria-labelledby="myTotpLabel"
data-keyboard="false">
<div class="modal-dialog" role="document">
@@ -225,10 +207,8 @@
</div>
</div>
</div>
<!-- 导航栏 -->
<div class="self-nav">
</div>
<nav class="navbar navbar-inverse navbar-fixed-top" id="navbar-inverse">
<div class="container-fluid">
@@ -307,6 +287,7 @@
<div class="second-menu">
<a href="#" onclick='loadMainContent("/merchant.html")'><span>商户配置</span></a>
<a href="#" onclick='loadMainContent("/merchant_v2.html")'><span>商户配置(V2)</span></a>
<a href="#" onclick='loadMainContent("/customerUserManagement.html")'>供销客户管理</a>
</div>
</div>
<div>
@@ -511,7 +492,6 @@
setError(".new-error", msg);
return;
}
$.ajax({
url: "/update/password",
data: {
@@ -519,7 +499,6 @@
newPassword: newPassword,
twicePassword: twicePassword
},
success: function (res) {
if (res.Code == 200) {
//将模态框关闭
@@ -553,13 +532,11 @@
alert("系统异常,退出失败!");
}
},
error: function (e) {
alert("系统异常!");
},
});
});
$(".first-menu").click(function (event) {
//判断右边图标箭头是向右,还是向下;如果当前的图片是向下,那么变为向右;有所的兄弟图标全部变为向右。
if ($(this).children(".last-glyphicon").hasClass("glyphicon-plus")) {
@@ -666,7 +643,6 @@
margin-right: 20px;
text-align: right;
}
.totp-body {
margin: 20px;
}