Commit 91b24323 authored by chunsen's avatar chunsen

feat: 更新词性 det. 修复词卡单词bug

parent 5a77febf
......@@ -95,10 +95,10 @@
</span>
<div style="width: auto; display: flex; align-items: center;">
<label style="margin-right: 10px; font-size: 14px;">
<input type="radio" [(ngModel)]="word.displayType" [value]="1" (change)="save()"> 词卡单词
<input type="radio" [(ngModel)]="word.displayType" [value]="1" (change)="save()" [name]="'displayType_' + i"> 词卡单词
</label>
<label style="font-size: 14px;">
<input type="radio" [(ngModel)]="word.displayType" [value]="3" (change)="save()"> 核心单词
<input type="radio" [(ngModel)]="word.displayType" [value]="3" (change)="save()" [name]="'displayType_' + i"> 核心单词
</label>
</div>
</div>
......
......@@ -31,10 +31,9 @@ export class FormComponent implements OnInit, OnChanges, OnDestroy {
'art.',
'num.',
'abbr.',
'verb phrase',
'noun phrase',
'prep phrase',
'phrase',
'ordinal number',
'det.'
];
// 存储courseId
......
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