Commit 6afe7435 authored by david's avatar david

fix: 将题目文本输入框替换为文本域

parent 2fcdeff5
......@@ -50,9 +50,9 @@
<div style="color: #aaa; margin: 10px;"> 示例:What's [your] name? (正确选项使用中括号括起来)</div>
<div *ngFor="let ques of page.quesArr; let j = index" style="margin: 10px; display: flex; align-items:center;">
<div *ngFor="let ques of page.quesArr; let j = index" style="margin: 10px; display: flex; align-items:start;">
<span style="">题-{{j+1}}:</span>
<input type="text" nz-input [(ngModel)]="ques.text" (blur)="save()" style=" width: 300px;">
<textarea rows="3" nz-input [(ngModel)]="ques.text" (blur)="save()" style=" width: 300px;"></textarea>
<button style="margin-left: 10px;" nz-button nzType="danger" (click)="deleteQuesBtnClick(page.quesArr, j)">
......
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