Commit 9d041721 authored by limingzhe's avatar limingzhe

fix: 重写逻辑发送数据逻辑

parent 1a589246
...@@ -2366,7 +2366,7 @@ export class PlayComponent implements OnInit, OnDestroy { ...@@ -2366,7 +2366,7 @@ export class PlayComponent implements OnInit, OnDestroy {
return; return;
} }
const resultData = this.getStoreData('resultData') || {}; const resultData = this.getStoreData('resultData');
const resultPic = this.getStoreData('resultPic') || ''; const resultPic = this.getStoreData('resultPic') || '';
const duration = new Date().getTime() - this.localStartTime; const duration = new Date().getTime() - this.localStartTime;
...@@ -3754,6 +3754,9 @@ export class PlayComponent implements OnInit, OnDestroy { ...@@ -3754,6 +3754,9 @@ export class PlayComponent implements OnInit, OnDestroy {
this.setStoreData('resultPic', this.userResultPic); this.setStoreData('resultPic', this.userResultPic);
this.firstShowResultView(); this.firstShowResultView();
} else {
this.firstShowResultView();
} }
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment