chenjingyu
4 years ago
5 changed files with 189 additions and 103 deletions
@ -0,0 +1,32 @@
|
||||
<!-- |
||||
* @Descripttion: |
||||
* @version: |
||||
* @Author: sueRimn |
||||
* @Date: 2021-02-23 14:49:48 |
||||
* @LastEditors: sueRimn |
||||
* @LastEditTime: 2021-02-23 15:38:47 |
||||
--> |
||||
<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" [(ngModel)]="startTime" /></div> |
||||
</div> |
||||
<div class="endtime"> |
||||
<div style="margin-bottom: 5px;"><label>请选择结束时间:</label></div> |
||||
<div><input type="datetime-local" name="end_time" [(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> |
@ -0,0 +1,44 @@
|
||||
.box{ |
||||
display: flex; |
||||
flex-direction: column; |
||||
margin-left: 20px; |
||||
input{ |
||||
width: 260px; |
||||
height: 40px; |
||||
line-height: 34px; |
||||
border-radius: 5px; |
||||
padding-left: 5px; |
||||
outline: none; |
||||
border: 1px solid rgb(226, 211, 211); |
||||
} |
||||
.diaone{ |
||||
display: flex; |
||||
flex-direction: column; |
||||
|
||||
button { |
||||
border: none; |
||||
color: white; |
||||
padding: 5px 25px; |
||||
text-align: center; |
||||
text-decoration: none; |
||||
display: inline-block; |
||||
font-size: 16px; |
||||
margin: 4px 2px; |
||||
cursor: pointer; |
||||
border-radius: 8px; |
||||
outline:0 none !important; |
||||
} |
||||
} |
||||
.diatwo{ |
||||
margin-top: 20px; |
||||
display: flex; |
||||
flex-direction: row; |
||||
.endtime{ |
||||
margin-left: 20px; |
||||
} |
||||
.datepicker{ |
||||
height: 44px; |
||||
border-radius: 5px; |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue