Commit 0f8e8bc0 authored by 黄奎's avatar 黄奎

页面修改

parent 8bec3030
......@@ -251,7 +251,7 @@
if (this.msg.ValidataCode == "") {
this.Info("请输入验证码!")
}
this.apipost("api/user/login", this.msg, res => {
this.apipost("/api/Tenant/Login", this.msg, res => {
console.log("res", res);
})
}
......
......@@ -54,7 +54,7 @@ export default {
//域名管理对象
Vue.prototype.domainManager = function () {
let domainUrl = '';
domainUrl = "http://127.0.0.1";
domainUrl = "https://localhost:5001";
let locationName = window.location.hostname;
if (locationName.indexOf('testerp.oytour') !== -1) {
domainUrl = "http://testapi.oytour.com";
......@@ -117,7 +117,7 @@ export default {
if (msg == null || msg == "") {
msg = {}
}
var apiurl = this.domainManager().PostUrl;
var apiurl = this.domainManager().DomainUrl+cmd;
var timestamp = (new Date()).valueOf();
this.apiurl = apiurl;
if (!localStorage.userInfo && localStorage.userInfo != "" && this.$route.path.toLowerCase() != "/login") {
......@@ -143,11 +143,11 @@ export default {
}
var postData = {
"msg": msg,
"cmd": cmd,
"timestamp": timestamp,
"token": token,
"sign": md5Str,
"languageId": tempLanguage
"languageId": tempLanguage,
"cmd": cmd,
}
this.$http.post(apiurl, postData, {
headers: {
......
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