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.
59 lines
1.9 KiB
59 lines
1.9 KiB
<!-- |
|
* @Descripttion: |
|
* @version: |
|
* @Author: sueRimn |
|
* @Date: 2020-09-02 16:22:35 |
|
* @LastEditors: sueRimn |
|
* @LastEditTime: 2020-09-07 16:05:31 |
|
--> |
|
<!-- <div class="head"> |
|
<select style="width: 80px;height: 30px; margin-left: 600px;margin-top: 20px;"> |
|
<option value ="2020">2020</option> |
|
</select> |
|
<select style="width: 80px;height: 30px; margin-left: 50px;" > |
|
<option value ="1">1</option> |
|
<option value ="1">2</option> |
|
<option value ="1">3</option> |
|
<option value ="1">4</option> |
|
<option value ="1">5</option> |
|
<option value ="1">6</option> |
|
<option value ="1">7</option> |
|
<option value ="1">8</option> |
|
<option value ="1" selected>9</option> |
|
</select> |
|
|
|
<button type="submit" mat-raised-button color="primary" style="margin-left: 50px;">查询</button> |
|
<button mat-raised-button (click)='goBack()' style="float: right; margin-top: 20px;margin-right: 50px;">返回</button> |
|
|
|
</div> --> |
|
<div class="box"> |
|
<div class="header"> |
|
<div class="queryField"> |
|
<form #form="ngForm" (ngSubmit)="Submit(form.value)"> |
|
<span>查询年份:</span> |
|
<mat-form-field> |
|
<mat-select [(ngModel)]="selectOneYear" name='selectOneYear'> |
|
<mat-option *ngFor="let item of years" [value]="item">{{item}}</mat-option> |
|
</mat-select> |
|
</mat-form-field> |
|
<span>查询月份:</span> |
|
<mat-form-field> |
|
<mat-select [(ngModel)]="selectStartMonth" name='selectStartMonth'> |
|
<mat-option *ngFor="let item of selectMonth" [value]="item">{{item}}</mat-option> |
|
</mat-select> |
|
</mat-form-field> |
|
<button type="submit" mat-raised-button color="primary">查询</button> |
|
</form> |
|
</div> |
|
|
|
<div class="btnbox"> |
|
<button mat-stroked-button (click)="goBack()">返回</button> |
|
</div> |
|
</div> |
|
<div class="zhu"> |
|
<div id="zhidui"> |
|
|
|
</div> |
|
</div> |
|
</div> |
|
|
|
|