Commit 999c34c4 authored by limingzhe's avatar limingzhe

fix: debug

parent ee0a36c2
No preview for this file type
{
"ver": "2.0.1",
"uuid": "25855db0-a378-4a76-bce4-191019da9a6f",
"downloadMode": 0,
"duration": 0.966531,
"subMetas": {}
}
\ No newline at end of file
...@@ -536,6 +536,9 @@ initMask() { ...@@ -536,6 +536,9 @@ initMask() {
this.readingTipClip = getAudioByResName('reading_tip'); this.readingTipClip = getAudioByResName('reading_tip');
this.readingTip2Clip = getAudioByResName('reading_tip_2'); this.readingTip2Clip = getAudioByResName('reading_tip_2');
this.dingClip = getAudioByResName('ding');
this.readyClip = getAudioByResName('ready'); this.readyClip = getAudioByResName('ready');
this.goClip = getAudioByResName('go'); this.goClip = getAudioByResName('go');
...@@ -1873,15 +1876,10 @@ showStartLight() { ...@@ -1873,15 +1876,10 @@ showStartLight() {
curQuesVideoPlayEnd() { curQuesVideoPlayEnd() {
if (this.curQues.hotZoneBg) { if (this.curQues.hotZoneBg) {
this.curQues.hotZoneBg.active = true; this.curQues.hotZoneBg.active = true;
} }
if (this.curQues.starAnimaArr && this.curQues.starAnimaArr.length > 0) { if (this.curQues.starAnimaArr && this.curQues.starAnimaArr.length > 0) {
// 临时 // 临时
...@@ -1891,25 +1889,24 @@ showStartLight() { ...@@ -1891,25 +1889,24 @@ showStartLight() {
this.testingFinger(); this.testingFinger();
// this.curQues.starAnimaArr = null; // this.curQues.starAnimaArr = null;
}) })
return; return;
} }
if (this.curQues.readingItemArr && this.curQues.readingItemArr.length > 0) { // if (this.curQues.readingItemArr && this.curQues.readingItemArr.length > 0) {
this.readingItemArr = this.curQues.readingItemArr; // this.readingItemArr = this.curQues.readingItemArr;
this.readingItemArrIndex = 0; // this.readingItemArrIndex = 0;
playAudio(this.readingTip2Clip, () => { // playAudio(this.readingTip2Clip, () => {
this.showReadingItem(); // this.showReadingItem();
}) // })
// this.showReadingItem(); // // this.showReadingItem();
return; // return;
} // }
...@@ -2726,6 +2723,8 @@ showStartLight() { ...@@ -2726,6 +2723,8 @@ showStartLight() {
console.log('in photoEndCheckPage 2'); console.log('in photoEndCheckPage 2');
playAudio(this.dingClip)
this.stopTesting(); this.stopTesting();
this.photoEndCheckPageSuccess(); this.photoEndCheckPageSuccess();
......
...@@ -158,8 +158,12 @@ ...@@ -158,8 +158,12 @@
<span>时间点(秒):</span> <span>时间点(秒):</span>
<input type="text" nz-input [(ngModel)]="readingIt.time" (blur)="save()" style=" width: 70px"> <input type="text" nz-input [(ngModel)]="readingIt.time" (blur)="save()" style=" width: 70px">
<span style="margin-left:20px;">内容:</span> <span style="margin-left:20px;">内容:</span>
<input type="text" nz-input [(ngModel)]="readingIt.content" (blur)="save()" style="margin-right: 20px; width: 600px"> <input type="text" nz-input [(ngModel)]="readingIt.content" (blur)="save()" style="margin-right: 20px; width: 230px">
<span style="margin-left:20px;">音标:</span>
<input type="text" nz-input [(ngModel)]="readingIt.content_yb" (blur)="save()" style="margin-right: 20px; width: 230px">
<app-audio-recorder <app-audio-recorder
[audioUrl]="readingIt.audio_url" [audioUrl]="readingIt.audio_url"
(audioUploaded)="onAudioUploadSuccess($event, 'audio_url', readingIt)" (audioUploaded)="onAudioUploadSuccess($event, 'audio_url', readingIt)"
......
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