|
|
@@ -4,9 +4,6 @@ class HTTP {
|
|
|
this.urls = [{
|
|
|
name: "美大正式",
|
|
|
url: "https://crm.meida.com:16691"
|
|
|
- }, {
|
|
|
- name: "楚楚",
|
|
|
- url: "https://cucu.cnyunl.com:8079"
|
|
|
}, {
|
|
|
name: "开发环境",
|
|
|
url: "http://61.164.207.46:8300"
|
|
|
@@ -14,8 +11,8 @@ class HTTP {
|
|
|
if (this.ENV === 'release') { // 正式版
|
|
|
this.baseUrl = "https://crm.meida.com:16691";
|
|
|
} else {
|
|
|
- this.baseUrl = "http://61.164.207.46:8300";
|
|
|
- // this.baseUrl = "https://crm.meida.com:16691";
|
|
|
+ // this.baseUrl = "http://61.164.207.46:8300";
|
|
|
+ this.baseUrl = "https://crm.meida.com:16691";
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -130,7 +127,7 @@ class HTTP {
|
|
|
const match = cookie.match(/JSESSIONID=([^;]+)/i);
|
|
|
if (match && match[1]) {
|
|
|
const newSessionId = match[1];
|
|
|
-
|
|
|
+
|
|
|
// 更新JSESSIONID
|
|
|
if (newSessionId !== this.jsessionid) {
|
|
|
this.jsessionid = newSessionId;
|