zmdms-utils 0.0.34 → 0.0.35

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.
@@ -10,8 +10,8 @@ function getBaseUrl(processObj) {
10
10
  };
11
11
  // 数字中心各个环境地址
12
12
  var cicomsApiBaseUrlObj = {
13
- dev: processObj.REACT_APP_CICOMS_API_DEV || "http://10.100.234.36:8082",
14
- test: processObj.REACT_APP_CICOMS_API_TEST || "http://10.100.234.36:8082",
13
+ dev: processObj.REACT_APP_CICOMS_API_DEV || "http://10.100.234.36:8000",
14
+ test: processObj.REACT_APP_CICOMS_API_TEST || "http://10.100.234.36:8000",
15
15
  stage: processObj.REACT_APP_CICOMS_API_STAGE || window.location.origin,
16
16
  product: processObj.REACT_APP_CICOMS_API_PRODUCT || window.location.origin,
17
17
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zmdms-utils",
3
- "version": "0.0.34",
3
+ "version": "0.0.35",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
package/src/baseUrl.ts CHANGED
@@ -12,8 +12,8 @@ export function getBaseUrl(processObj: any) {
12
12
 
13
13
  // 数字中心各个环境地址
14
14
  const cicomsApiBaseUrlObj: any = {
15
- dev: processObj.REACT_APP_CICOMS_API_DEV || "http://10.100.234.36:8082",
16
- test: processObj.REACT_APP_CICOMS_API_TEST || "http://10.100.234.36:8082",
15
+ dev: processObj.REACT_APP_CICOMS_API_DEV || "http://10.100.234.36:8000",
16
+ test: processObj.REACT_APP_CICOMS_API_TEST || "http://10.100.234.36:8000",
17
17
  stage: processObj.REACT_APP_CICOMS_API_STAGE || window.location.origin,
18
18
  product: processObj.REACT_APP_CICOMS_API_PRODUCT || window.location.origin,
19
19
  };