123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <div class="list-template">
- <div class="list-template__content">
- <div class="list-template__top" nz-row>
- <div nz-col nzXl='19' class="list-template__searchBox">
- <div class="list-template__searchItem">
- <span class="label">发起时间</span>:
- <nz-range-picker [(ngModel)]="dateRange" [nzAllowClear]='false' (ngModelChange)="changeDate($event)">
- </nz-range-picker>
- <br />
- </div>
- <div class="list-template__searchItem ml8">
- <nz-select class="formItem" [nzDropdownMatchSelectWidth]="false" [nzShowSearch]="false" nzPlaceHolder="请选择时间"
- [(ngModel)]="defRange" (ngModelChange)="changeDateRange($event)">
- <nz-option nzLabel="{{data.label}}" nzValue="{{data.id}}" *ngFor="let data of defRanges"></nz-option>
- </nz-select>
- </div>
- </div>
- <div nz-col nzXl='5' class="list-template__btns">
- <button nz-button class="btn default" (click)='search(1)'>搜索</button>
- <button nz-button class="btn default ml8" (click)='export()' [nzLoading]="loading2">导出</button>
- <button nz-button class="btn default ml8" (click)='reset()'>重置</button>
- </div>
- </div>
- <div class="list-template__bottom">
- <nz-table class="list-template__nzTable" [nzData]="listOfData" nzSize="middle" [nzShowPagination]="false"
- [nzLoading]="loading1">
- <thead>
- <tr class="thead">
- <th nzWidth="5%">序号</th>
- <th nzWidth="10%">科室名称</th>
- <th nzWidth="10%">工单总量</th>
- <th nzWidth="10%">主动评价次数</th>
- <th nzWidth="10%">标本数量</th>
- <th nzWidth="10%">标本轮巡数量</th>
- <th nzWidth="10%">患者陪检数量</th>
- <th nzWidth="10%">药品数量</th>
- <th nzWidth="10%">静配数量</th>
- <th nzWidth="10%">患者转运数量</th>
- <th nzWidth="5%">其他数量</th>
- </tr>
- </thead>
- <tbody>
- <tr *ngFor="let data of listOfData;let index=index;">
- <td>{{index+(pageIndex-1) * pageSize + 1}}</td>
- <td>{{ data.date }}</td>
- <td>{{ data.total||0}}</td>
- <td>{{data.elevateCount||0}}</td>
- <td>{{data.speCount||0}}</td>
- <td>{{data.spePlanCount||0}}</td>
- <td>{{data.insCount||0}}</td>
- <td>{{data.drugsCount||0}}</td>
- <td>{{data.jpCount||0}}</td>
- <td>{{data.transCount||0}}</td>
- <td>{{data.otherCount||0}}</td>
- </tr>
- </tbody>
- </nz-table>
- <div class="list-template__pagination">
- <nz-pagination [(nzPageIndex)]="pageIndex" [(nzTotal)]="listLength" nzShowSizeChanger [(nzPageSize)]="pageSize"
- (nzPageIndexChange)="getList()" (nzPageSizeChange)="getList()">
- </nz-pagination>
- </div>
- </div>
- </div>
- </div>
- <!-- 操作成功/失败提示框 -->
- <app-prompt-modal *ngIf="promptModalShow" [content]="promptContent" [success]="ifSuccess" [show]="promptModalShow"
- [info]="promptInfo"></app-prompt-modal>
- <!-- 查看详情 -->
- <router-outlet></router-outlet>
|