Commit dc55d20a authored by limingzhe's avatar limingzhe

fix: debug

parent 3caa3b23
......@@ -37,6 +37,17 @@
></app-audio-recorder>
</div>
<nz-divider ></nz-divider>
<span style="margin-left: 15px; ">选填:</span>
<div *ngFor="let at of audioTypeArr2" style="margin: 15px; display: flex; align-items: center;">
<span style="margin-right: 20px; width: 150px; " align="right">{{at.info}}: </span>
<app-audio-recorder
[audioUrl]="item[at.key + '_audio_url']"
(audioUploaded)="onAudioUploadSuccess($event, at.key + '_audio_url')"
></app-audio-recorder>
</div>
</div>
<!-- <div style="width: 300px;">
......@@ -271,6 +282,23 @@
</div>
<div *ngIf=" item.typeArr && item.typeArr.length > 1" style="margin-top: 30px;">
<h2>识别顺序设置:</h2>
<div style="padding: 10px; border: 2px solid #ccc; border-radius: 10px; width: 350px;">
<span style="position:absolute; margin-left: 10px">优先识别:</span>
<nz-radio-group [ngModel]="item.firstGIdx" (ngModelChange)="onRadioChange($event)" style="display: flex; align-items: center; justify-content: center; flex-wrap: wrap;">
<div *ngFor="let type of item.typeArr;" style="display: flex; ">
<label nz-radio nzValue="{{type.gIdx}}">{{type.name}}</label>
</div>
</nz-radio-group>
</div>
</div>
<div style="margin-top: 30px; width: 200px; height: 50px; border: 1px solid #ccc ; border-radius: 5px; display: flex; align-items: center; justify-content: center;">
<label nz-checkbox [(ngModel)]="item.isGuide" (ngModelChange)="save()">首次引导</label>
......
This diff is collapsed.
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