|
@@ -36,6 +36,7 @@
|
|
|
}
|
|
|
},
|
|
|
mounted() {
|
|
|
+
|
|
|
this.$nextTick(()=>{
|
|
|
this.$refs.myvideo.play();
|
|
|
})
|
|
@@ -54,10 +55,14 @@
|
|
|
localStorage.setItem('deviceToken',data.deviceId)
|
|
|
}
|
|
|
};
|
|
|
+
|
|
|
this.getStatusBarHeight();
|
|
|
this.getIDFA();
|
|
|
this.getDeviceInfo();
|
|
|
this.getDeviceToken();
|
|
|
+ if(JSON.parse(localStorage.getItem('userInfo')).regDone){
|
|
|
+ this.$router.replace({name:'main'});
|
|
|
+ }
|
|
|
},
|
|
|
methods: {
|
|
|
onVideoPause(){//解决切换页面视频自动暂停
|