You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<div class="box">
|
|
|
|
<div class="top">
|
|
|
|
<span style="font-size: 20px;">修改内容</span>
|
|
|
|
</div>
|
|
|
|
<div class="queryField">
|
|
|
|
<label style="margin-right: 10px;">名称:</label>
|
|
|
|
<!-- <mat-form-field class="example-full-width">
|
|
|
|
<input matInput placeholder="请输入表头名称" [(ngModel)]="headName" autocomplete="off" readonly>
|
|
|
|
</mat-form-field> -->
|
|
|
|
<span>{{headName}}</span>
|
|
|
|
</div>
|
|
|
|
<div class="queryField" *ngIf="level==1||level==undefined">
|
|
|
|
<label style="margin-right: 10px;">列数:</label>
|
|
|
|
<mat-form-field class="example-full-width">
|
|
|
|
<input matInput type="number" [(ngModel)]="data.tableth.length" autocomplete="off" required min="0" required>
|
|
|
|
</mat-form-field>
|
|
|
|
</div>
|
|
|
|
<div class="queryField" *ngIf="level==2">
|
|
|
|
<label style="margin-right: 10px;">列数:</label>
|
|
|
|
<mat-form-field class="example-full-width">
|
|
|
|
<input matInput type="number" [(ngModel)]="data.tableth[0].length" autocomplete="off" required min="1" required>
|
|
|
|
</mat-form-field>
|
|
|
|
</div>
|
|
|
|
<div class="queryField" *ngIf="level==2">
|
|
|
|
<label style="margin-right: 10px;">行数:</label>
|
|
|
|
<mat-form-field class="example-full-width">
|
|
|
|
<input matInput type="number" [(ngModel)]="data.tableth.length" autocomplete="off" required min="1" required>
|
|
|
|
</mat-form-field>
|
|
|
|
</div>
|
|
|
|
<div class="bottom">
|
|
|
|
<button mat-raised-button color="primary" (click)='newdisaster()'>确定</button>
|
|
|
|
<button mat-raised-button style="margin-left: 50px;" (click)='close()'>取消</button>
|
|
|
|
</div>
|
|
|
|
</div>
|