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.
53 lines
2.2 KiB
53 lines
2.2 KiB
<!-- |
|
* @Descripttion: |
|
* @version: |
|
* @Author: sueRimn |
|
* @Date: 2020-12-21 09:15:06 |
|
* @LastEditors: sueRimn |
|
* @LastEditTime: 2020-12-21 09:15:07 |
|
--> |
|
<div class="box"> |
|
<div class="diaone"> |
|
<div style="margin-bottom: 5px;"><label>请填写试卷名称:</label></div> |
|
<div><input style="padding-left: 11px;" placeholder="请填写" [(ngModel)]="examName"></div> |
|
</div> |
|
<div class="diaone"> |
|
<div style="margin-bottom: 5px;"><label>请选择考核队站:</label></div> |
|
<nz-tree-select [nzDropdownClassName]="'maxHeightTreeSelect'" style="width: 287px" [(ngModel)]="selectedOr" |
|
[nzNodes]="nodes" (ngModelChange)="onChange($event)" [nzMultiple]="true" nzPlaceHolder="请选择" |
|
[nzExpandedIcon]="multiExpandedIconTpl"> |
|
</nz-tree-select> |
|
<ng-template #multiExpandedIconTpl let-node let-origin="origin"> |
|
<ng-container *ngIf="node.children.length == 0; else elseTemplate"> |
|
|
|
</ng-container> |
|
<ng-template #elseTemplate> |
|
<ng-container *ngIf="node.isExpanded; else elseTemplate"> |
|
<mat-icon>expand_more</mat-icon> |
|
</ng-container> |
|
<ng-template #elseTemplate> |
|
<mat-icon>chevron_right</mat-icon> |
|
</ng-template> |
|
|
|
</ng-template> |
|
</ng-template> |
|
</div> |
|
<div class="diatwo"> |
|
<div class="starttime"> |
|
<div style="margin-bottom: 5px;"><label>请选择开始时间:</label></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> |
|
<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> |