邵佳豪
4 years ago
12 changed files with 2200 additions and 14 deletions
@ -0,0 +1,32 @@ |
|||||||
|
<!-- |
||||||
|
* @Descripttion: |
||||||
|
* @version: |
||||||
|
* @Author: sueRimn |
||||||
|
* @Date: 2020-12-13 10:57:48 |
||||||
|
* @LastEditors: sueRimn |
||||||
|
* @LastEditTime: 2020-12-14 10:23:32 |
||||||
|
--> |
||||||
|
<div class="box"> |
||||||
|
<div class="diaone"> |
||||||
|
<div><label>请填写试卷类型:</label></div> |
||||||
|
<div><input placeholder="请填写"></div> |
||||||
|
</div> |
||||||
|
<div class="diatwo"> |
||||||
|
<div class="starttime"> |
||||||
|
<div><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><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;">确定</button> |
||||||
|
<button mat-button [mat-dialog-close]="data.animal" style=" background-color: #FF8678;margin-left: 25px;">取消</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