@extscreen/es-core 2.2.19 → 2.2.22
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/dist/index.js +57 -45
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -798,7 +798,7 @@ var ESAudioModule$1 = new ESAudioModule();
|
|
798
798
|
*
|
799
799
|
*/
|
800
800
|
|
801
|
-
const TAG$
|
801
|
+
const TAG$5 = 'ESAudioManager';
|
802
802
|
|
803
803
|
class ESAudioManager {
|
804
804
|
|
@@ -824,7 +824,7 @@ class ESAudioManager {
|
|
824
824
|
initPromise() {
|
825
825
|
return new Promise((resolve, reject) => {
|
826
826
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
827
|
-
ESLog.d(TAG$
|
827
|
+
ESLog.d(TAG$5, '------------init----start----->>>>');
|
828
828
|
}
|
829
829
|
this.getStreamSystemMaxVolume();
|
830
830
|
this.getStreamSystemVolume();
|
@@ -839,7 +839,7 @@ class ESAudioManager {
|
|
839
839
|
ESAudioModule$1.getStreamVoiceCallMaxVolume()
|
840
840
|
.then((volume) => {
|
841
841
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
842
|
-
ESLog.d(TAG$
|
842
|
+
ESLog.d(TAG$5, '-----getStreamVoiceCallMaxVolume--->>>>' + volume);
|
843
843
|
}
|
844
844
|
this._voiceCallMaxVolume = volume;
|
845
845
|
});
|
@@ -853,7 +853,7 @@ class ESAudioManager {
|
|
853
853
|
ESAudioModule$1.getStreamVoiceCallVolume()
|
854
854
|
.then((volume) => {
|
855
855
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
856
|
-
ESLog.d(TAG$
|
856
|
+
ESLog.d(TAG$5, '-----getStreamVoiceCallVolume--->>>>' + volume);
|
857
857
|
}
|
858
858
|
this._voiceCallVolume = volume;
|
859
859
|
});
|
@@ -868,7 +868,7 @@ class ESAudioManager {
|
|
868
868
|
ESAudioModule$1.getStreamSystemMaxVolume()
|
869
869
|
.then((volume) => {
|
870
870
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
871
|
-
ESLog.d(TAG$
|
871
|
+
ESLog.d(TAG$5, '-----getStreamSystemMaxVolume--->>>>' + volume);
|
872
872
|
}
|
873
873
|
this._systemMaxVolume = volume;
|
874
874
|
});
|
@@ -882,7 +882,7 @@ class ESAudioManager {
|
|
882
882
|
ESAudioModule$1.getStreamSystemVolume()
|
883
883
|
.then((volume) => {
|
884
884
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
885
|
-
ESLog.d(TAG$
|
885
|
+
ESLog.d(TAG$5, '-----getStreamSystemVolume--->>>>' + volume);
|
886
886
|
}
|
887
887
|
this._systemVolume = volume;
|
888
888
|
});
|
@@ -897,7 +897,7 @@ class ESAudioManager {
|
|
897
897
|
ESAudioModule$1.getStreamRingMaxVolume()
|
898
898
|
.then((volume) => {
|
899
899
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
900
|
-
ESLog.d(TAG$
|
900
|
+
ESLog.d(TAG$5, '-----getStreamRingMaxVolume--->>>>' + volume);
|
901
901
|
}
|
902
902
|
this._ringMaxVolume = volume;
|
903
903
|
});
|
@@ -911,7 +911,7 @@ class ESAudioManager {
|
|
911
911
|
ESAudioModule$1.getStreamRingVolume()
|
912
912
|
.then((volume) => {
|
913
913
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
914
|
-
ESLog.d(TAG$
|
914
|
+
ESLog.d(TAG$5, '-----getStreamRingVolume--->>>>' + volume);
|
915
915
|
}
|
916
916
|
this._ringVolume = volume;
|
917
917
|
});
|
@@ -926,7 +926,7 @@ class ESAudioManager {
|
|
926
926
|
ESAudioModule$1.getStreamMusicMaxVolume()
|
927
927
|
.then((volume) => {
|
928
928
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
929
|
-
ESLog.d(TAG$
|
929
|
+
ESLog.d(TAG$5, '-----getStreamMusicMaxVolume--->>>>' + volume);
|
930
930
|
}
|
931
931
|
this._musicMaxVolume = volume;
|
932
932
|
});
|
@@ -940,7 +940,7 @@ class ESAudioManager {
|
|
940
940
|
ESAudioModule$1.getStreamMusicVolume()
|
941
941
|
.then((volume) => {
|
942
942
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
943
|
-
ESLog.d(TAG$
|
943
|
+
ESLog.d(TAG$5, '-----getStreamMusicVolume--->>>>' + volume);
|
944
944
|
}
|
945
945
|
this._musicVolume = volume;
|
946
946
|
});
|
@@ -955,7 +955,7 @@ class ESAudioManager {
|
|
955
955
|
ESAudioModule$1.getStreamAlarmMaxVolume()
|
956
956
|
.then((volume) => {
|
957
957
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
958
|
-
ESLog.d(TAG$
|
958
|
+
ESLog.d(TAG$5, '-----getStreamAlarmMaxVolume--->>>>' + volume);
|
959
959
|
}
|
960
960
|
this._alarmMaxVolume = volume;
|
961
961
|
});
|
@@ -969,7 +969,7 @@ class ESAudioManager {
|
|
969
969
|
ESAudioModule$1.getStreamAlarmVolume()
|
970
970
|
.then((volume) => {
|
971
971
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
972
|
-
ESLog.d(TAG$
|
972
|
+
ESLog.d(TAG$5, '-----getStreamAlarmVolume--->>>>' + volume);
|
973
973
|
}
|
974
974
|
this._alarmVolume = volume;
|
975
975
|
});
|
@@ -984,7 +984,7 @@ class ESAudioManager {
|
|
984
984
|
ESAudioModule$1.getStreamMaxVolume(streamType)
|
985
985
|
.then((volume) => {
|
986
986
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
987
|
-
ESLog.d(TAG$
|
987
|
+
ESLog.d(TAG$5, streamType + '-----getStreamMaxVolume--->>>>' + volume);
|
988
988
|
}
|
989
989
|
});
|
990
990
|
}
|
@@ -993,7 +993,7 @@ class ESAudioManager {
|
|
993
993
|
ESAudioModule$1.getStreamVolume(streamType)
|
994
994
|
.then((volume) => {
|
995
995
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
996
|
-
ESLog.d(TAG$
|
996
|
+
ESLog.d(TAG$5, streamType + '-----getStreamVolume--->>>>' + volume);
|
997
997
|
}
|
998
998
|
});
|
999
999
|
}
|
@@ -2417,7 +2417,7 @@ class ESLaunchManager {
|
|
2417
2417
|
|
2418
2418
|
var ESLaunchManager$1 = new ESLaunchManager();
|
2419
2419
|
|
2420
|
-
const TAG$
|
2420
|
+
const TAG$4 = "ESRouter";
|
2421
2421
|
|
2422
2422
|
/**
|
2423
2423
|
* router按键管理
|
@@ -2447,12 +2447,12 @@ class ESRouterKeyManager {
|
|
2447
2447
|
if (keyEvent && keyEvent.action === 0) {
|
2448
2448
|
if (this.isFunction(componentInstance.onKeyDown)) {
|
2449
2449
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
2450
|
-
ESLog.d(TAG$
|
2450
|
+
ESLog.d(TAG$4, '#-------onKeyDown---success------>>>>>');
|
2451
2451
|
}
|
2452
2452
|
componentInstance.onKeyDown(keyEvent);
|
2453
2453
|
} else {
|
2454
2454
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
2455
|
-
ESLog.d(TAG$
|
2455
|
+
ESLog.d(TAG$4, '#-------onKeyDown---error------>>>>>');
|
2456
2456
|
}
|
2457
2457
|
}
|
2458
2458
|
}
|
@@ -2460,19 +2460,19 @@ class ESRouterKeyManager {
|
|
2460
2460
|
else if (keyEvent && keyEvent.action === 1) {
|
2461
2461
|
if (this.isFunction(componentInstance.onKeyUp)) {
|
2462
2462
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
2463
|
-
ESLog.d(TAG$
|
2463
|
+
ESLog.d(TAG$4, '#-------onKeyUp---success------>>>>>');
|
2464
2464
|
}
|
2465
2465
|
componentInstance.onKeyUp(keyEvent);
|
2466
2466
|
} else {
|
2467
2467
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
2468
|
-
ESLog.d(TAG$
|
2468
|
+
ESLog.d(TAG$4, '#-------onKeyUp---error------>>>>>');
|
2469
2469
|
}
|
2470
2470
|
}
|
2471
2471
|
}
|
2472
2472
|
}
|
2473
2473
|
} else {
|
2474
2474
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
2475
|
-
ESLog.d(TAG$
|
2475
|
+
ESLog.d(TAG$4, '#-------dispatchInstanceKeyEvent-----实例对象为空------>>>>>');
|
2476
2476
|
}
|
2477
2477
|
}
|
2478
2478
|
}
|
@@ -2487,17 +2487,17 @@ class ESRouterKeyManager {
|
|
2487
2487
|
if (componentInstance) {
|
2488
2488
|
if (this.isFunction(componentInstance.onBackPressed)) {
|
2489
2489
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
2490
|
-
ESLog.d(TAG$
|
2490
|
+
ESLog.d(TAG$4, '#-------onBackPressed---success------>>>>>');
|
2491
2491
|
}
|
2492
2492
|
componentInstance.onBackPressed();
|
2493
2493
|
} else {
|
2494
2494
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
2495
|
-
ESLog.d(TAG$
|
2495
|
+
ESLog.d(TAG$4, '#-------onBackPressed---error------>>>>>');
|
2496
2496
|
}
|
2497
2497
|
}
|
2498
2498
|
} else {
|
2499
2499
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
2500
|
-
ESLog.d(TAG$
|
2500
|
+
ESLog.d(TAG$4, '#-------dispatchInstanceBackPressed-----实例对象为空------>>>>>');
|
2501
2501
|
}
|
2502
2502
|
}
|
2503
2503
|
}
|
@@ -2522,7 +2522,7 @@ const ES_LIFECYCLE_ON_STOP = 7;
|
|
2522
2522
|
const ES_LIFECYCLE_ON_SAVE_INSTANCE_SATE = 8;
|
2523
2523
|
const ES_LIFECYCLE_ON_DESTROY = 9;
|
2524
2524
|
|
2525
|
-
const TAG$
|
2525
|
+
const TAG$3 = "ESRouter";
|
2526
2526
|
|
2527
2527
|
/**
|
2528
2528
|
* router生命周期管理
|
@@ -2600,7 +2600,7 @@ class ESRouterLifecycleManager {
|
|
2600
2600
|
}
|
2601
2601
|
} else {
|
2602
2602
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
2603
|
-
ESLog.d(TAG$
|
2603
|
+
ESLog.d(TAG$3, '#-------onESRouterLifecycleChanged-----实例对象为空------>>>>>');
|
2604
2604
|
}
|
2605
2605
|
}
|
2606
2606
|
}
|
@@ -2617,7 +2617,7 @@ class ESRouterLifecycleManager {
|
|
2617
2617
|
componentInstance.onESNewIntent(params);
|
2618
2618
|
} else {
|
2619
2619
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
2620
|
-
ESLog.d(TAG$
|
2620
|
+
ESLog.d(TAG$3, '#-------onESRouterLifecycleNewIntent-----实例对象为空------>>>>>');
|
2621
2621
|
}
|
2622
2622
|
}
|
2623
2623
|
}
|
@@ -2629,7 +2629,7 @@ class ESRouterLifecycleManager {
|
|
2629
2629
|
|
2630
2630
|
var ESRouterLifecycleManager$1 = new ESRouterLifecycleManager();
|
2631
2631
|
|
2632
|
-
const TAG$
|
2632
|
+
const TAG$2 = "ESRouter";
|
2633
2633
|
|
2634
2634
|
var ESRouter = {
|
2635
2635
|
|
@@ -2651,7 +2651,7 @@ var ESRouter = {
|
|
2651
2651
|
//---------------------------返回键--------------------------------
|
2652
2652
|
onESRouterBackPressed() {
|
2653
2653
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
2654
|
-
ESLog.d(TAG$
|
2654
|
+
ESLog.d(TAG$2, '#-------onESRouterBackPressed----->>>>>');
|
2655
2655
|
}
|
2656
2656
|
let router = this.$router;
|
2657
2657
|
if (router) {
|
@@ -2662,7 +2662,7 @@ var ESRouter = {
|
|
2662
2662
|
//----------------------------按键-------------------------------
|
2663
2663
|
onESRouterDispatchKeyEvent(keyEvent) {
|
2664
2664
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
2665
|
-
ESLog.d(TAG$
|
2665
|
+
ESLog.d(TAG$2, '#-------onESRouterDispatchKeyEvent----->>>>>' + keyEvent);
|
2666
2666
|
}
|
2667
2667
|
let router = this.$router;
|
2668
2668
|
if (router) {
|
@@ -2674,7 +2674,7 @@ var ESRouter = {
|
|
2674
2674
|
//---------------------------生命周期--------------------------------
|
2675
2675
|
onESRouterLifecycleChanged(event) {
|
2676
2676
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
2677
|
-
ESLog.d(TAG$
|
2677
|
+
ESLog.d(TAG$2, '#-------onESRouterLifecycleChanged----->>>>>' + event);
|
2678
2678
|
}
|
2679
2679
|
let router = this.$router;
|
2680
2680
|
if (router) {
|
@@ -2686,7 +2686,7 @@ var ESRouter = {
|
|
2686
2686
|
//---------------------------onNewIntent--------------------------------
|
2687
2687
|
onESRouterLifecycleNewIntent(intent) {
|
2688
2688
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
2689
|
-
ESLog.d(TAG$
|
2689
|
+
ESLog.d(TAG$2, '#-------onESRouterLifecycleNewIntent----->>>>>' + intent);
|
2690
2690
|
}
|
2691
2691
|
let router = this.$router;
|
2692
2692
|
if (router) {
|
@@ -3484,7 +3484,7 @@ function ESAnimationViewComponent() {
|
|
3484
3484
|
});
|
3485
3485
|
}
|
3486
3486
|
|
3487
|
-
const TAG = "ESSeekBar";
|
3487
|
+
const TAG$1 = "ESSeekBar";
|
3488
3488
|
|
3489
3489
|
var ESSeekBar = {
|
3490
3490
|
render: function(){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('es-seek-bar-view-component',{ref:"es_seek_bar",attrs:{"secondProgress":_vm.secondaryProgress,"secondColor":_vm.secondaryColor,"backgroundColor":_vm.backgroundColor,"color":_vm.primaryColor,"cornerRadius":_vm.cornerRadius,"interceptKeyEvent":_vm.interceptKeyEvent,"listenProgress":_vm.listenProgress,"thumbColor":_vm.thumbColor},on:{"focus":_vm.onSeekBarFocusChanged}})},
|
@@ -3545,14 +3545,14 @@ staticRenderFns: [],
|
|
3545
3545
|
methods: {
|
3546
3546
|
show(value) {
|
3547
3547
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
3548
|
-
ESLog.d(TAG, '--------show------>>>>>' + value);
|
3548
|
+
ESLog.d(TAG$1, '--------show------>>>>>' + value);
|
3549
3549
|
}
|
3550
3550
|
this.$refs.es_seek_bar.show(value);
|
3551
3551
|
},
|
3552
3552
|
setProgress(progress) {
|
3553
3553
|
if (this.seekBarMode === ES_SEEK_BAR_MODE_PROGRESS) {
|
3554
3554
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
3555
|
-
ESLog.d(TAG, '--------setProgress------>>>>>' + progress);
|
3555
|
+
ESLog.d(TAG$1, '--------setProgress------>>>>>' + progress);
|
3556
3556
|
}
|
3557
3557
|
this.progress = progress;
|
3558
3558
|
this.$refs.es_seek_bar.setProgress(progress);
|
@@ -3561,7 +3561,7 @@ staticRenderFns: [],
|
|
3561
3561
|
setMaxProgress(maxProgress) {
|
3562
3562
|
if (this.seekBarMode === ES_SEEK_BAR_MODE_PROGRESS) {
|
3563
3563
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
3564
|
-
ESLog.d(TAG, '--------setMaxProgress------>>>>>' + maxProgress);
|
3564
|
+
ESLog.d(TAG$1, '--------setMaxProgress------>>>>>' + maxProgress);
|
3565
3565
|
}
|
3566
3566
|
this.maxProgress = maxProgress;
|
3567
3567
|
this.$refs.es_seek_bar.setMaxProgress(maxProgress);
|
@@ -3596,7 +3596,7 @@ staticRenderFns: [],
|
|
3596
3596
|
}
|
3597
3597
|
this.$refs.es_seek_bar.setProgress(this.progress);
|
3598
3598
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
3599
|
-
ESLog.d(TAG, '----Seek----setProgress------>>>>>' + this.progress);
|
3599
|
+
ESLog.d(TAG$1, '----Seek----setProgress------>>>>>' + this.progress);
|
3600
3600
|
}
|
3601
3601
|
if (this.onProgressChanged) {
|
3602
3602
|
let now = new Date().getTime();
|
@@ -3609,13 +3609,13 @@ staticRenderFns: [],
|
|
3609
3609
|
//
|
3610
3610
|
else {
|
3611
3611
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
3612
|
-
ESLog.d(TAG, '--------SeekBarNotFocused------>>>>>');
|
3612
|
+
ESLog.d(TAG$1, '--------SeekBarNotFocused------>>>>>');
|
3613
3613
|
}
|
3614
3614
|
}
|
3615
3615
|
},
|
3616
3616
|
stopSeek() {
|
3617
3617
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
3618
|
-
ESLog.d(TAG, '--------stopSeek------>>>>>');
|
3618
|
+
ESLog.d(TAG$1, '--------stopSeek------>>>>>');
|
3619
3619
|
}
|
3620
3620
|
this.seekCount = 0;
|
3621
3621
|
this.seekBarMode = ES_SEEK_BAR_MODE_PROGRESS;
|
@@ -3624,7 +3624,7 @@ staticRenderFns: [],
|
|
3624
3624
|
onSeekBarFocusChanged(e) {
|
3625
3625
|
this.isSeekBarFocused = e.isFocused;
|
3626
3626
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
3627
|
-
ESLog.d(TAG, '--------onSeekBarFocusChanged------>>>>>' + this.isSeekBarFocused);
|
3627
|
+
ESLog.d(TAG$1, '--------onSeekBarFocusChanged------>>>>>' + this.isSeekBarFocused);
|
3628
3628
|
}
|
3629
3629
|
this.$emit("onFocusChanged", e);
|
3630
3630
|
},
|
@@ -3985,6 +3985,8 @@ const ES_NETWORK_INFO_TYPE_MOBILE = 0;
|
|
3985
3985
|
const ES_NETWORK_INFO_TYPE_WIFI = 1;
|
3986
3986
|
const ES_NETWORK_INFO_TYPE_ETHERNET = 9;
|
3987
3987
|
|
3988
|
+
const TAG = 'ESApplication';
|
3989
|
+
|
3988
3990
|
var ESApplication = {
|
3989
3991
|
mixins: [ESRouter],
|
3990
3992
|
data() {
|
@@ -4019,6 +4021,16 @@ var ESApplication = {
|
|
4019
4021
|
this.appInitUrl = ESApp.$options.$superProps.url;
|
4020
4022
|
this.appInitParams = ESApp.$options.$superProps.params;
|
4021
4023
|
|
4024
|
+
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
4025
|
+
try {
|
4026
|
+
ESLog.d(TAG, `--------initESAppParams--->>>>>`
|
4027
|
+
+ '\nAppInitUrl:' + this.appInitUrl
|
4028
|
+
+ '\nAppInitParams:' + JSON.stringify(this.appInitParams)
|
4029
|
+
);
|
4030
|
+
} catch (e) {
|
4031
|
+
}
|
4032
|
+
}
|
4033
|
+
|
4022
4034
|
if (!this.appInitUrl) {
|
4023
4035
|
this.appInitUrl = this.$router.options.main;
|
4024
4036
|
}
|
@@ -4032,32 +4044,32 @@ var ESApplication = {
|
|
4032
4044
|
if (this._isFunction(this.onESCreate)) {
|
4033
4045
|
let result = this.onESCreate(this.appInitProps);
|
4034
4046
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
4035
|
-
ESLog.d(
|
4047
|
+
ESLog.d(TAG, '---------onESCreate---------->>>>', result);
|
4036
4048
|
}
|
4037
4049
|
if (result instanceof Promise) {
|
4038
4050
|
result.then(
|
4039
4051
|
(success) => {
|
4040
4052
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
4041
|
-
ESLog.d(
|
4053
|
+
ESLog.d(TAG, '---------onESCreate---Promise---success---->>>>');
|
4042
4054
|
}
|
4043
4055
|
this._initPage();
|
4044
4056
|
},
|
4045
4057
|
error => {
|
4046
4058
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
4047
|
-
console.log(
|
4059
|
+
console.log(TAG, '---------onESCreate---Promise---error---->>>>', error);
|
4048
4060
|
}
|
4049
4061
|
this._initPage();
|
4050
4062
|
}
|
4051
4063
|
);
|
4052
4064
|
} else {
|
4053
4065
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
4054
|
-
ESLog.d(
|
4066
|
+
ESLog.d(TAG, '---------onESCreate--return-Not Promise----->>>>');
|
4055
4067
|
}
|
4056
4068
|
this._initPage();
|
4057
4069
|
}
|
4058
4070
|
} else {
|
4059
4071
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
4060
|
-
ESLog.d(
|
4072
|
+
ESLog.d(TAG, '---------onESCreate---Not Function----->>>>');
|
4061
4073
|
}
|
4062
4074
|
this._initPage();
|
4063
4075
|
}
|
@@ -4068,7 +4080,7 @@ var ESApplication = {
|
|
4068
4080
|
params: this.appInitParams,
|
4069
4081
|
};
|
4070
4082
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
4071
|
-
|
4083
|
+
ESLog.i(TAG, '---------onESCreate---initPage----->>>>', route);
|
4072
4084
|
}
|
4073
4085
|
this.$router.push(route);
|
4074
4086
|
},
|