浏览代码

统一baseUrl

seimin 7 月之前
父节点
当前提交
9bdf4c6f39
共有 2 个文件被更改,包括 7 次插入4 次删除
  1. 4 2
      http/http.js
  2. 3 2
      pages/bindUser/bindUser.vue

+ 4 - 2
http/http.js

@@ -6,10 +6,12 @@ let path = "";
6 6
 let appIp = "";
7 7
 let dsHost = "";
8 8
 // #ifdef H5
9
-let domainName = location.host; //域名+端口
9
+let pathname = location.pathname.split('/')[1]; //二级目录
10
+pathname = pathname ? '/' + pathname : '';
10 11
 let protocolName = document.location.protocol; //http协议
11 12
 let wsName = protocolName === 'http:' ? 'ws' : 'wss'; //ws协议
12
-path = `${protocolName}//${domainName}/service`;
13
+export const baseUrl = `${location.origin}${pathname}`;
14
+path = `${baseUrl}/service`;
13 15
 dsHost = location.hostname;
14 16
 // #endif
15 17
 uni.setStorageSync('path', path);

+ 3 - 2
pages/bindUser/bindUser.vue

@@ -22,6 +22,7 @@
22 22
     get,
23 23
     post,
24 24
     SM,
25
+    baseUrl,
25 26
     webHandle
26 27
   } from "../../http/http.js";
27 28
   export default {
@@ -103,10 +104,10 @@
103 104
                 if (result.confirm) {
104 105
                   console.log('用户点击确定',_this.type);
105 106
                   if (_this.type) {
106
-                    location.assign(location.origin + location.pathname + '#/pages/homePage/homePage?type=' +
107
+                    location.assign(baseUrl + '/' + '#/pages/homePage/homePage?type=' +
107 108
                       _this.type);
108 109
                   } else {
109
-                    location.assign(location.origin + location.pathname + '#/pages/homePage/homePage');
110
+                    location.assign(baseUrl + '/' + '#/pages/homePage/homePage');
110 111
                   }
111 112
                 } else if (result.cancel) {
112 113
                   console.log('用户点击取消');