'基本信息'

main
石超 2024-07-18 17:18:42 +08:00
parent 493b20653c
commit ab0fe62014
7 changed files with 21 additions and 7 deletions

View File

@ -394,6 +394,7 @@ body.mini-navbar .navbar-default .nav > li > .nav-second-level li a {
.navbar-fixed-top,
.navbar-static-top {
background: #f3f3f4;
width:100%;
}
.fixed-nav #wrapper {

BIN
favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 KiB

View File

@ -63,7 +63,7 @@
<div class="navbar-header">
<a class="navbar-minimalize minimalize-styl-2 btn btn-primary" href="#"><i
class="fa fa-bars"></i> </a>
<form role="search" class="navbar-form-custom" method="post" action="search_results.html">
<form role="search" class="navbar-form-custom" method="post" action="#">
<div class="form-group">
<input type="text" placeholder="请输入您需要查找的内容 …" class="form-control" name="top-search"
id="top-search" />
@ -93,7 +93,7 @@
<li class="J_tabCloseAll"><a>全部关闭</a></li>
</ul>
</div>
<a href="#" class="roll-nav roll-right tabReload"><i class="fa fa-refresh"></i> 刷新</a>
<a href="javascript:location.reload()" class="roll-nav roll-right tabReload"><i class="fa fa-refresh"></i> 刷新</a>
</div>
<div class="row J_mainContent" id="content-main">
<iframe class="J_iframe" name="iframe0" width="100%" height="100%" src="table_daishenhe.html"

View File

@ -1,4 +1,5 @@
const baseURL = "http://192.168.10.102:9008";
// const baseURL = "http://175.27.168.120:6019";
const imageURL = "http://175.27.168.120:6023/";
const timeout = 3000;
@ -21,13 +22,25 @@ function request(url, method, data = {}, contentType, back) {
},
error: function (error) {
console.log(error);
return typeof back == "function" && back(null);
if (error.responseJSON.code == 401) {
toastr.error("登录信息已过期,请重新登录");
localStorage.removeItem("token");
window.location.href = "login.html";
return false;
} else {
alert("网络错误");
return typeof back == "function" && back(null);
}
},
});
}
function getAjaxRequst(url, _data, callBack) {
request(url, "GET", _data, "application/json", function (res) {
return typeof callBack == "function" && callBack(res);
if (res && res.code == 200) {
return typeof callBack == "function" && callBack(res);
} else {
toastr.error(res.message);
}
});
}
function postAjaxRequst(url, _data, callBack) {

View File

@ -4,7 +4,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>H+ 后台主题UI框架 - 登录</title>
<title>登录</title>
<link rel="shortcut icon" href="favicon.ico">
<link href="css/bootstrap.min.css?v=3.3.7" rel="stylesheet">
<link href="css/font-awesome.css?v=4.4.0" rel="stylesheet">

View File

@ -4,7 +4,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<title>待审核</title>
<link rel="shortcut icon" href="favicon.ico">
<link href="css/bootstrap.min.css?v=3.3.7" rel="stylesheet">
<link href="css/font-awesome.css?v=4.4.0" rel="stylesheet">

View File

@ -4,7 +4,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<title>已审核</title>
<link rel="shortcut icon" href="favicon.ico">
<link href="css/bootstrap.min.css?v=3.3.7" rel="stylesheet">
<link href="css/font-awesome.css?v=4.4.0" rel="stylesheet">