@luck-design-biz/luckda 1.0.2-20temp → 1.0.2-20temp1
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/es/services.js +1 -0
- package/lib/services.js +2 -1
- package/package.json +1 -1
package/es/services.js
CHANGED
|
@@ -2,6 +2,7 @@ import _regeneratorRuntime from "@babel/runtime/helpers/esm/regeneratorRuntime";
|
|
|
2
2
|
import _asyncToGenerator from "@babel/runtime/helpers/esm/asyncToGenerator";
|
|
3
3
|
import { request } from '@luck-design-biz/base/utils';
|
|
4
4
|
import api from "@/services/ApiConfig";
|
|
5
|
+
import { stringify } from 'querystring';
|
|
5
6
|
export function readModlue(_x) {
|
|
6
7
|
return _readModlue.apply(this, arguments);
|
|
7
8
|
}
|
package/lib/services.js
CHANGED
|
@@ -11,6 +11,7 @@ var _regeneratorRuntime2 = _interopRequireDefault(require("@babel/runtime/helper
|
|
|
11
11
|
var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));
|
|
12
12
|
var _utils = require("@luck-design-biz/base/utils");
|
|
13
13
|
var _ApiConfig = _interopRequireDefault(require("@/services/ApiConfig"));
|
|
14
|
+
var _querystring = require("querystring");
|
|
14
15
|
function readModlue(_x) {
|
|
15
16
|
return _readModlue.apply(this, arguments);
|
|
16
17
|
}
|
|
@@ -38,7 +39,7 @@ function _readUI() {
|
|
|
38
39
|
return (0, _regeneratorRuntime2.default)().wrap(function _callee2$(_context2) {
|
|
39
40
|
while (1) switch (_context2.prev = _context2.next) {
|
|
40
41
|
case 0:
|
|
41
|
-
return _context2.abrupt("return", (0, _utils.request)("".concat(_ApiConfig.default.LUCKDA_HOST, "/ui/builder/noAuthFetchModuleDataSetUI?").concat(stringify(get))));
|
|
42
|
+
return _context2.abrupt("return", (0, _utils.request)("".concat(_ApiConfig.default.LUCKDA_HOST, "/ui/builder/noAuthFetchModuleDataSetUI?").concat((0, _querystring.stringify)(get))));
|
|
42
43
|
case 1:
|
|
43
44
|
case "end":
|
|
44
45
|
return _context2.stop();
|
package/package.json
CHANGED