Kaynağa Gözat

Merge branch 'master' of http://git.dashitech.com/seimin/zy-wechat

maotao 7 ay önce
ebeveyn
işleme
ce785d66d3
3 değiştirilmiş dosya ile 10 ekleme ve 4 silme
  1. 4 2
      http/http.js
  2. 3 0
      manifest.json
  3. 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 - 0
manifest.json

@@ -71,7 +71,10 @@
71 71
         "title" : "",
72 72
         "domain" : "",
73 73
         "router" : {
74
+            // 正常打包目录
74 75
             "base" : "/app/"
76
+            // 宜昌打包目录
77
+            // "base" : "/dstechbh/app/"
75 78
         },
76 79
         "optimization" : {
77 80
             "treeShaking" : {

+ 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('用户点击取消');