Commit 2e86549b authored by 黄奎's avatar 黄奎

页面修改

parent 59a79421
Pipeline #60 canceled with stages
...@@ -78,6 +78,10 @@ export default { ...@@ -78,6 +78,10 @@ export default {
return null; return null;
} }
}, },
//是否是线上环境【发布时修改为true】
Vue.prototype.isOnline = function () {
return process.env.NODE_ENV !== 'development';
},
//HTTP提交数据 //HTTP提交数据
Vue.prototype.apipost = function (cmd, msg, successCall, faildCall, isOnline) { Vue.prototype.apipost = function (cmd, msg, successCall, faildCall, isOnline) {
if (msg == null || msg == "") { if (msg == null || msg == "") {
...@@ -86,13 +90,11 @@ export default { ...@@ -86,13 +90,11 @@ export default {
var apiurl = this.domainManager().PostUrl; var apiurl = this.domainManager().PostUrl;
var timestamp = (new Date()).valueOf(); var timestamp = (new Date()).valueOf();
this.apiurl = apiurl; this.apiurl = apiurl;
if (!localStorage.userInfo && localStorage.userInfo != "" && this.$route.path.toLowerCase() != "/login") { if (!localStorage.userInfo && localStorage.userInfo != "" && this.$route.path.toLowerCase() != "/login") {
this.$router.push({ this.$router.push({
path: '/login' path: '/login'
}) })
} }
var token = ""; var token = "";
var key = ""; var key = "";
if (this.getLocalStorage() != null) { if (this.getLocalStorage() != null) {
...@@ -134,6 +136,6 @@ export default { ...@@ -134,6 +136,6 @@ export default {
successCall(res); successCall(res);
} }
}, faildCall) }, faildCall)
}, }
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment