|
@@ -10,8 +10,13 @@ let pathname = location.pathname.split('/')[1]; //二级目录
|
10
|
10
|
pathname = pathname ? '/' + pathname : '';
|
11
|
11
|
let protocolName = document.location.protocol; //http协议
|
12
|
12
|
let wsName = protocolName === 'http:' ? 'ws' : 'wss'; //ws协议
|
13
|
|
-// export const baseUrl = `${location.origin}${pathname}`;//宜昌二级目录
|
14
|
|
-export const baseUrl = `${location.origin}`;
|
|
13
|
+let url_temporary = '';
|
|
14
|
+if(pathname === '/app'){
|
|
15
|
+ url_temporary = `${location.origin}`;//无二级目录
|
|
16
|
+}else{
|
|
17
|
+ url_temporary = `${location.origin}${pathname}`;//二级目录
|
|
18
|
+}
|
|
19
|
+export const baseUrl = url_temporary;
|
15
|
20
|
path = `${baseUrl}/service`;
|
16
|
21
|
dsHost = location.hostname;
|
17
|
22
|
// #endif
|