Commit 91b24323 authored by chunsen's avatar chunsen

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

parent 5a77febf
...@@ -95,10 +95,10 @@ ...@@ -95,10 +95,10 @@
</span> </span>
<div style="width: auto; display: flex; align-items: center;"> <div style="width: auto; display: flex; align-items: center;">
<label style="margin-right: 10px; font-size: 14px;"> <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>
<label style="font-size: 14px;"> <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> </label>
</div> </div>
</div> </div>
......
...@@ -31,10 +31,9 @@ export class FormComponent implements OnInit, OnChanges, OnDestroy { ...@@ -31,10 +31,9 @@ export class FormComponent implements OnInit, OnChanges, OnDestroy {
'art.', 'art.',
'num.', 'num.',
'abbr.', 'abbr.',
'verb phrase', 'phrase',
'noun phrase',
'prep phrase',
'ordinal number', 'ordinal number',
'det.'
]; ];
// 存储courseId // 存储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