Browse Source

fix:添加免责声明

liu.shiyi 10 months ago
parent
commit
59dfa97430

+ 4 - 2
data-room-ui/public/config/index-development.js

@@ -1,7 +1,9 @@
 window.ENV = 'development'
 var developmentConfig = {
-  baseUrl: 'http://127.0.0.1:8081/bigScreenServer',
-  fileUrlPrefix: 'http://127.0.0.1:8081/bigScreenServer' + '/static'
+  baseURL: 'http://gcpaas.gccloud.com/bigScreenServer',
+  fileUrlPrefix: 'http://gcpaas.gccloud.com/bigScreenServer' + '/static'
 }
 // 必须的
+window.CONFIG={}
 window.CONFIG = configDeepMerge(window.CONFIG, developmentConfig)
+

+ 3 - 3
data-room-ui/public/config/index-production.js

@@ -1,8 +1,8 @@
 window.ENV = 'production'
 var productionConfig = {
-  baseUrl: 'http://gcpaas.gccloud.com/bigScreenServer',
+  baseURL: 'http://gcpaas.gccloud.com/bigScreenServer',
   fileUrlPrefix: 'http://gcpaas.gccloud.com/bigScreenServer' + '/static'
-
 }
 // 必须的
-window.CONFIG = configDeepMerge(window.CONFIG, productionConfig)
+window.CONFIG = {}
+window.CONFIG  = configDeepMerge(window.CONFIG , productionConfig)