api路径更改
This commit is contained in:
parent
8f62cccfd6
commit
6e6a29cfa6
|
@ -14,6 +14,57 @@
|
||||||
<script src="/javascripts/wechat/react.js"></script>
|
<script src="/javascripts/wechat/react.js"></script>
|
||||||
<script src="/javascripts/wechat/JSXTransformer.js"></script>
|
<script src="/javascripts/wechat/JSXTransformer.js"></script>
|
||||||
<script src="/javascripts/wechat/ReactRouter.js"></script>
|
<script src="/javascripts/wechat/ReactRouter.js"></script>
|
||||||
|
<script> //获取浏览器页面可见高度和宽度
|
||||||
|
|
||||||
|
var _PageHeight = document.documentElement.clientHeight,
|
||||||
|
|
||||||
|
_PageWidth = document.documentElement.clientWidth;
|
||||||
|
|
||||||
|
//计算loading框距离顶部和左部的距离(loading框的宽度为215px,高度为61px)
|
||||||
|
|
||||||
|
var _LoadingTop = _PageHeight > 61 ? (_PageHeight - 61) / 2 : 0,
|
||||||
|
|
||||||
|
_LoadingLeft = _PageWidth > 215 ? (_PageWidth - 215) / 2 : 0;
|
||||||
|
|
||||||
|
//在页面未加载完毕之前显示的loading Html自定义内容
|
||||||
|
|
||||||
|
var _LoadingHtml = '<div id="loadingDiv" style="position:absolute;left:0;width:100%;height:' + _PageHeight + 'px;top:0;background:#f3f8ff;opacity:0.8;filter:alpha(opacity=80);z-index:10000;"><div style="position: absolute; cursor1: wait; left: ' + _LoadingLeft + 'px; top:' + _LoadingTop + 'px; width: auto; height: 57px; line-height: 57px; padding-left: 50px; padding-right: 5px; background: #fff url(/Content/loading.gif) no-repeat scroll 5px 10px; border: 2px solid #95B8E7; color: #696969; font-family:\'Microsoft YaHei\';">页面加载中,请等待...</div></div>';
|
||||||
|
|
||||||
|
//呈现loading效果
|
||||||
|
|
||||||
|
document.write(_LoadingHtml);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//window.onload = function () {
|
||||||
|
|
||||||
|
// var loadingMask = document.getElementById('loadingDiv');
|
||||||
|
|
||||||
|
// loadingMask.parentNode.removeChild(loadingMask);
|
||||||
|
|
||||||
|
//};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//监听加载状态改变
|
||||||
|
|
||||||
|
document.onreadystatechange = completeLoading;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//加载状态为complete时移除loading效果
|
||||||
|
|
||||||
|
function completeLoading() {
|
||||||
|
|
||||||
|
if (document.readyState == "complete") {
|
||||||
|
|
||||||
|
var loadingMask = document.getElementById('loadingDiv');
|
||||||
|
|
||||||
|
loadingMask.parentNode.removeChild(loadingMask);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}</script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="container"></div>
|
<div id="container"></div>
|
||||||
|
|
|
@ -3,7 +3,7 @@ var apiUrl = '/api/v1/';
|
||||||
var debug = false; //调试标志,如果在本地请置为true
|
var debug = false; //调试标志,如果在本地请置为true
|
||||||
|
|
||||||
if(debug===true){
|
if(debug===true){
|
||||||
apiUrl = 'http://localhost:3000/api/v1/';
|
apiUrl = 'https://www.trustie.net/api/v1/';
|
||||||
}
|
}
|
||||||
|
|
||||||
app.factory('auth', function($http,$routeParams, $cookies, $q){
|
app.factory('auth', function($http,$routeParams, $cookies, $q){
|
||||||
|
|
Loading…
Reference in New Issue