zmdms-utils 0.0.64 → 0.0.65

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.
@@ -0,0 +1,3 @@
1
+ var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
2
+
3
+ export { commonjsGlobal };
@@ -0,0 +1,7 @@
1
+ var decimalExports = {};
2
+ var decimal = {
3
+ get exports(){ return decimalExports; },
4
+ set exports(v){ decimalExports = v; },
5
+ };
6
+
7
+ export { decimal as __module, decimalExports as exports };
@@ -33,9 +33,9 @@ function getBaseUrl(processObj, options) {
33
33
  // 退出登录地址
34
34
  var logoutUrl = {
35
35
  dev: processObj["".concat(logoutKey, "_DEV")] || "/login",
36
- test: processObj["".concat(logoutKey, "_DEV")] || "/login",
37
- stage: processObj["".concat(logoutKey, "_DEV")] || "http://testportal.cncico.com:8099/",
38
- prod: processObj["".concat(logoutKey, "_DEV")] || "http://newportal.cncico.com/",
36
+ test: processObj["".concat(logoutKey, "_TEST")] || "/login",
37
+ stage: processObj["".concat(logoutKey, "_STAGE")] || "http://testportal.cncico.com:8099/",
38
+ prod: processObj["".concat(logoutKey, "_PROD")] || "http://newportal.cncico.com/",
39
39
  };
40
40
  var currentKey = ENV.toLowerCase() || "prod";
41
41
  return {