ls-pro-common 3.0.53 → 3.0.54
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/common.js +1 -1
- package/dist/common.min.js +1 -1
- package/es/service/BaseService.js +3 -3
- package/lib/service/BaseService.js +3 -3
- package/package.json +1 -1
|
@@ -42,7 +42,7 @@ var BaseService = /*#__PURE__*/function () {
|
|
|
42
42
|
break;
|
|
43
43
|
}
|
|
44
44
|
_context.next = 7;
|
|
45
|
-
return httpPost(url, param);
|
|
45
|
+
return httpPost(url, param, true, this.needGateway);
|
|
46
46
|
case 7:
|
|
47
47
|
return _context.abrupt("return", _context.sent);
|
|
48
48
|
case 8:
|
|
@@ -86,7 +86,7 @@ var BaseService = /*#__PURE__*/function () {
|
|
|
86
86
|
break;
|
|
87
87
|
}
|
|
88
88
|
_context2.next = 8;
|
|
89
|
-
return httpPut(url, data);
|
|
89
|
+
return httpPut(url, data, this.needGateway);
|
|
90
90
|
case 8:
|
|
91
91
|
return _context2.abrupt("return", _context2.sent);
|
|
92
92
|
case 9:
|
|
@@ -159,7 +159,7 @@ var BaseService = /*#__PURE__*/function () {
|
|
|
159
159
|
break;
|
|
160
160
|
}
|
|
161
161
|
_context4.next = 7;
|
|
162
|
-
return httpPost(url, data);
|
|
162
|
+
return httpPost(url, data, true, this.needGateway);
|
|
163
163
|
case 7:
|
|
164
164
|
return _context4.abrupt("return", _context4.sent);
|
|
165
165
|
case 8:
|
|
@@ -42,7 +42,7 @@ var BaseService = /*#__PURE__*/function () {
|
|
|
42
42
|
break;
|
|
43
43
|
}
|
|
44
44
|
_context.next = 7;
|
|
45
|
-
return httpPost(url, param);
|
|
45
|
+
return httpPost(url, param, true, this.needGateway);
|
|
46
46
|
case 7:
|
|
47
47
|
return _context.abrupt("return", _context.sent);
|
|
48
48
|
case 8:
|
|
@@ -86,7 +86,7 @@ var BaseService = /*#__PURE__*/function () {
|
|
|
86
86
|
break;
|
|
87
87
|
}
|
|
88
88
|
_context2.next = 8;
|
|
89
|
-
return httpPut(url, data);
|
|
89
|
+
return httpPut(url, data, this.needGateway);
|
|
90
90
|
case 8:
|
|
91
91
|
return _context2.abrupt("return", _context2.sent);
|
|
92
92
|
case 9:
|
|
@@ -159,7 +159,7 @@ var BaseService = /*#__PURE__*/function () {
|
|
|
159
159
|
break;
|
|
160
160
|
}
|
|
161
161
|
_context4.next = 7;
|
|
162
|
-
return httpPost(url, data);
|
|
162
|
+
return httpPost(url, data, true, this.needGateway);
|
|
163
163
|
case 7:
|
|
164
164
|
return _context4.abrupt("return", _context4.sent);
|
|
165
165
|
case 8:
|