|
@@ -267,25 +267,25 @@ if (appConfig.voice_command) {
|
267
|
267
|
|
268
|
268
|
//服务器上面
|
269
|
269
|
appConfig.apiRootUrl = 'api';
|
270
|
|
-appConfig.baseUrl = 'http://localhost:9025';
|
271
|
|
-appConfig.systemUrl = location.protocol+"//"+location.host+'/depot-system';
|
272
|
|
-appConfig.basicUrl = location.protocol+"//"+location.host+'/depot-basic';
|
273
|
|
-appConfig.keeperHouseUrl = location.protocol+"//"+location.host+'/depot-keeper-account';
|
274
|
|
-appConfig.paymentUrl = location.protocol+"//"+location.host+'/depot-payment';
|
275
|
|
-appConfig.depotStorageUrl = location.protocol+"//"+location.host+'/depot-storage';
|
276
|
|
-//appConfig.grainAnalysis = location.protocol+"//"+location.host+'/depot-grain-analysis';
|
277
|
|
-appConfig.houseKeeperRepairUrl = location.protocol+"//"+location.host+'/depot-keeper-house';
|
278
|
|
-//appConfig.taskUrl = location.protocol+"//"+location.host+'/depot-task';
|
279
|
|
-appConfig.qualitycheckUrl = location.protocol+"//"+location.host+'/depot-qualitycheck';
|
280
|
|
-appConfig.monitorUrl = location.protocol+"//"+location.host+'/depot-monitor';
|
281
|
|
-appConfig.superviseUrl = location.protocol+"//"+location.host+'/depot-supervise';
|
282
|
|
-appConfig.agileUrl = location.protocol+"//"+location.host+'/depot-agile';
|
283
|
|
-appConfig.businessUrl = location.protocol+"//"+location.host+'/depot-business';
|
284
|
|
-appConfig.deviceUrl = location.protocol+"//"+location.host+'/depot-device';
|
285
|
|
-appConfig.customerUrl = location.protocol+"//"+location.host+'/depot-customer';
|
286
|
|
-appConfig.agentUrl = location.protocol+"//"+location.host+'/depot-agent';
|
287
|
|
-appConfig.intelligentUrl = location.protocol+"//"+location.host+'/depot-intelligent';
|
288
|
|
-appConfig.sharedUrl = location.protocol+"//"+location.host+'/depot-shared';
|
|
270
|
+appConfig.baseUrl = '/proxy';
|
|
271
|
+appConfig.systemUrl = appConfig.baseUrl+'/depot-system';
|
|
272
|
+appConfig.basicUrl = appConfig.baseUrl+'/depot-basic';
|
|
273
|
+appConfig.keeperHouseUrl = appConfig.baseUrl+'/depot-keeper-account';
|
|
274
|
+appConfig.paymentUrl = appConfig.baseUrl+'/depot-payment';
|
|
275
|
+appConfig.depotStorageUrl = appConfig.baseUrl+'/depot-storage';
|
|
276
|
+//appConfig.grainAnalysis = appConfig.baseUrl+'/depot-grain-analysis';
|
|
277
|
+appConfig.houseKeeperRepairUrl = appConfig.baseUrl+'/depot-keeper-house';
|
|
278
|
+//appConfig.taskUrl = appConfig.baseUrl+'/depot-task';
|
|
279
|
+appConfig.qualitycheckUrl = appConfig.baseUrl+'/depot-qualitycheck';
|
|
280
|
+appConfig.monitorUrl = appConfig.baseUrl+'/depot-monitor';
|
|
281
|
+appConfig.superviseUrl = appConfig.baseUrl+'/depot-supervise';
|
|
282
|
+appConfig.agileUrl = appConfig.baseUrl+'/depot-agile';
|
|
283
|
+appConfig.businessUrl = appConfig.baseUrl+'/depot-business';
|
|
284
|
+appConfig.deviceUrl = appConfig.baseUrl+'/depot-device';
|
|
285
|
+appConfig.customerUrl = appConfig.baseUrl+'/depot-customer';
|
|
286
|
+appConfig.agentUrl = appConfig.baseUrl+'/depot-agent';
|
|
287
|
+appConfig.intelligentUrl = appConfig.baseUrl+'/depot-intelligent';
|
|
288
|
+appConfig.sharedUrl = appConfig.baseUrl+'/depot-shared';
|
289
|
289
|
window.appConfig = appConfig;
|
290
|
290
|
/*
|
291
|
291
|
* END APP.appConfig
|