seimin 1 year ago
parent
commit
fac49e4cce
3 changed files with 17 additions and 0 deletions
  1. 5 0
      http/http.js
  2. 11 0
      package-lock.json
  3. 1 0
      package.json

+ 5 - 0
http/http.js

@@ -1,3 +1,4 @@
1
+import { encode } from 'js-base64';
1 2
 // #ifdef H5
2 3
 import wx from 'weixin-jsapi'
3 4
 // #endif
@@ -35,6 +36,10 @@ export function get(url, data = {}) {
35 36
 }
36 37
 // post方法
37 38
 export function post(url, data = {}) {
39
+  if(url.includes('/workerOrder/orderSign/')){
40
+    let code = url.replace('/workerOrder/orderSign/', '');
41
+    url = '/workerOrder/orderSign/' + encode(code);
42
+  }
38 43
   url = path + url;
39 44
   return new Promise((resolve, reject) => {
40 45
     uni.request({

+ 11 - 0
package-lock.json

@@ -11,6 +11,7 @@
11 11
       "dependencies": {
12 12
         "crypto-js": "^4.1.1",
13 13
         "eruda": "^3.0.1",
14
+        "js-base64": "^3.7.5",
14 15
         "spinkit": "^2.0.1",
15 16
         "vconsole": "^3.14.7",
16 17
         "weixin-jsapi": "^1.1.0"
@@ -212,6 +213,11 @@
212 213
         "has": "^1.0.3"
213 214
       }
214 215
     },
216
+    "node_modules/js-base64": {
217
+      "version": "3.7.5",
218
+      "resolved": "https://registry.npmmirror.com/js-base64/-/js-base64-3.7.5.tgz",
219
+      "integrity": "sha512-3MEt5DTINKqfScXKfJFrRbxkrnk2AxPWGBL/ycjz4dK8iqiSJ06UxD8jh8xuh6p10TX4t2+7FsBYVxxQbMg+qA=="
220
+    },
215 221
     "node_modules/minimatch": {
216 222
       "version": "3.0.4",
217 223
       "resolved": "https://registry.npmmirror.com/minimatch/download/minimatch-3.0.4.tgz",
@@ -621,6 +627,11 @@
621 627
         "has": "^1.0.3"
622 628
       }
623 629
     },
630
+    "js-base64": {
631
+      "version": "3.7.5",
632
+      "resolved": "https://registry.npmmirror.com/js-base64/-/js-base64-3.7.5.tgz",
633
+      "integrity": "sha512-3MEt5DTINKqfScXKfJFrRbxkrnk2AxPWGBL/ycjz4dK8iqiSJ06UxD8jh8xuh6p10TX4t2+7FsBYVxxQbMg+qA=="
634
+    },
624 635
     "minimatch": {
625 636
       "version": "3.0.4",
626 637
       "resolved": "https://registry.npmmirror.com/minimatch/download/minimatch-3.0.4.tgz",

+ 1 - 0
package.json

@@ -16,6 +16,7 @@
16 16
   "dependencies": {
17 17
     "crypto-js": "^4.1.1",
18 18
     "eruda": "^3.0.1",
19
+    "js-base64": "^3.7.5",
19 20
     "spinkit": "^2.0.1",
20 21
     "vconsole": "^3.14.7",
21 22
     "weixin-jsapi": "^1.1.0"