'基本信息'
parent
493b20653c
commit
ab0fe62014
|
|
@ -394,6 +394,7 @@ body.mini-navbar .navbar-default .nav > li > .nav-second-level li a {
|
||||||
.navbar-fixed-top,
|
.navbar-fixed-top,
|
||||||
.navbar-static-top {
|
.navbar-static-top {
|
||||||
background: #f3f3f4;
|
background: #f3f3f4;
|
||||||
|
width:100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fixed-nav #wrapper {
|
.fixed-nav #wrapper {
|
||||||
|
|
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 9.1 KiB |
|
|
@ -63,7 +63,7 @@
|
||||||
<div class="navbar-header">
|
<div class="navbar-header">
|
||||||
<a class="navbar-minimalize minimalize-styl-2 btn btn-primary" href="#"><i
|
<a class="navbar-minimalize minimalize-styl-2 btn btn-primary" href="#"><i
|
||||||
class="fa fa-bars"></i> </a>
|
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">
|
<div class="form-group">
|
||||||
<input type="text" placeholder="请输入您需要查找的内容 …" class="form-control" name="top-search"
|
<input type="text" placeholder="请输入您需要查找的内容 …" class="form-control" name="top-search"
|
||||||
id="top-search" />
|
id="top-search" />
|
||||||
|
|
@ -93,7 +93,7 @@
|
||||||
<li class="J_tabCloseAll"><a>全部关闭</a></li>
|
<li class="J_tabCloseAll"><a>全部关闭</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</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>
|
||||||
<div class="row J_mainContent" id="content-main">
|
<div class="row J_mainContent" id="content-main">
|
||||||
<iframe class="J_iframe" name="iframe0" width="100%" height="100%" src="table_daishenhe.html"
|
<iframe class="J_iframe" name="iframe0" width="100%" height="100%" src="table_daishenhe.html"
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
const baseURL = "http://192.168.10.102:9008";
|
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 imageURL = "http://175.27.168.120:6023/";
|
||||||
const timeout = 3000;
|
const timeout = 3000;
|
||||||
|
|
||||||
|
|
@ -21,13 +22,25 @@ function request(url, method, data = {}, contentType, back) {
|
||||||
},
|
},
|
||||||
error: function (error) {
|
error: function (error) {
|
||||||
console.log(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) {
|
function getAjaxRequst(url, _data, callBack) {
|
||||||
request(url, "GET", _data, "application/json", function (res) {
|
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) {
|
function postAjaxRequst(url, _data, callBack) {
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<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 rel="shortcut icon" href="favicon.ico">
|
||||||
<link href="css/bootstrap.min.css?v=3.3.7" rel="stylesheet">
|
<link href="css/bootstrap.min.css?v=3.3.7" rel="stylesheet">
|
||||||
<link href="css/font-awesome.css?v=4.4.0" rel="stylesheet">
|
<link href="css/font-awesome.css?v=4.4.0" rel="stylesheet">
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title></title>
|
<title>待审核</title>
|
||||||
<link rel="shortcut icon" href="favicon.ico">
|
<link rel="shortcut icon" href="favicon.ico">
|
||||||
<link href="css/bootstrap.min.css?v=3.3.7" rel="stylesheet">
|
<link href="css/bootstrap.min.css?v=3.3.7" rel="stylesheet">
|
||||||
<link href="css/font-awesome.css?v=4.4.0" rel="stylesheet">
|
<link href="css/font-awesome.css?v=4.4.0" rel="stylesheet">
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title></title>
|
<title>已审核</title>
|
||||||
<link rel="shortcut icon" href="favicon.ico">
|
<link rel="shortcut icon" href="favicon.ico">
|
||||||
<link href="css/bootstrap.min.css?v=3.3.7" rel="stylesheet">
|
<link href="css/bootstrap.min.css?v=3.3.7" rel="stylesheet">
|
||||||
<link href="css/font-awesome.css?v=4.4.0" rel="stylesheet">
|
<link href="css/font-awesome.css?v=4.4.0" rel="stylesheet">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue