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.
32 lines
1.5 KiB
32 lines
1.5 KiB
<!-- |
|
* @Descripttion: |
|
* @version: |
|
* @Author: sueRimn |
|
* @Date: 2020-12-13 10:57:48 |
|
* @LastEditors: sueRimn |
|
* @LastEditTime: 2020-12-14 14:08:52 |
|
--> |
|
<div class="box"> |
|
<div class="diaone"> |
|
<div style="margin-bottom: 5px;"><label>请填写试卷名称:</label></div> |
|
<div><input placeholder="请填写" [(ngModel)]="examName"></div> |
|
</div> |
|
<div class="diatwo"> |
|
<div class="starttime"> |
|
<div style="margin-bottom: 5px;"><label>请选择开始时间:</label></div> |
|
<!-- <div><nz-range-picker class="datepicker" nzFormat="yyyy-MM-dd HH:mm" [nzShowTime]="{ nzHideDisabledOptions: true, nzDefaultOpenValue: timeDefaultValue }" [nzDisabledTime]="disabledDateTime" [(ngModel)]="date" (ngModelChange)="onChange($event)"></nz-range-picker> |
|
</div> --> |
|
<div><input type="datetime-local" name="start_time" value="" [(ngModel)]="startTime" /></div> |
|
</div> |
|
<div class="endtime"> |
|
<div style="margin-bottom: 5px;"><label>请选择结束时间:</label></div> |
|
<div><input type="datetime-local" name="end_time" value="" [(ngModel)]="endTime"/></div> |
|
</div> |
|
|
|
</div> |
|
|
|
<div mat-dialog-actions style="margin-top: 20px;"> |
|
<button mat-button (click)="onNoClick()" style="background-color: #07CDCF;margin-left: 200px;color: #fff;">确定</button> |
|
<button mat-button type="button" (click)="close()" style=" background-color: #FF8678;margin-left: 25px;color: #fff;">取消</button> |
|
</div> |
|
</div> |