Commit a1e58ad4 authored by wangqinghua's avatar wangqinghua

update

parent ea376401
<div nz-row class="breadcrumbs" >
<div nz-row class="breadcrumbs">
<div nz-col nzSpan="16">
<nz-breadcrumb class="padding-8-0">
<nz-breadcrumb-item>
......@@ -13,14 +13,14 @@
</nz-breadcrumb>
</div>
<div nz-col nzSpan="8" class="text-right">
<button (click)="getList()" nz-button nzType="primary"><i class="anticon anticon-search"></i></button>
<button (click)="ngOnInit()" nz-button nzType="primary"><i class="anticon anticon-sync"></i></button>
<smart-full-screen></smart-full-screen>
</div>
</div>
<div nz-row [nzGutter]="4" class="search-form">
<div nz-col nzSpan="3">
<button (click)="addPlan()" nz-button nzType="default"><i class="anticon anticon-plus-circle-o"></i>新增计划</button>
<button (click)="addPlan()" nz-button nzType="default"><i class="anticon anticon-plus-circle-o"></i>新增计划
</button>
</div>
<div nz-col nzSpan="4">
<nz-select style="width: 100%;" [(ngModel)]="obj.status" nzPlaceHolder="计划状态">
......@@ -30,20 +30,25 @@
</nz-select>
</div>
<div nz-col nzSpan="4">
<nz-select style="width: 100%;" [(ngModel)]="obj.typeId" nzPlaceHolder="计划类型">
<nz-select style="width: 100%;" [(ngModel)]="obj.typeId" nzPlaceHolder="计划类型">
<ng-container *ngFor="let item of planTypeList">
<nz-option [nzValue]="item.id" [nzLabel]="item.name"></nz-option>
</ng-container>
</nz-select>
</div>
<div nz-col nzSpan="8">
<nz-input-group>
<input type="text" nz-input [(ngModel)]="obj.searchStr" placeholder="计划名称/负责人">
</nz-input-group>
<div nz-col nzSpan="6"></div>
<div nz-col nzSpan="5">
<input type="text" nz-input [(ngModel)]="obj.searchStr" placeholder="计划名称/负责人">
</div>
<div nz-col nzSpan="2">
<button (click)="getList()" nz-button nzType="default"><i class="anticon anticon-search"
style="color: #6097b7"></i>搜索
</button>
</div>
</div>
<nz-table #nzTable [nzData]="planList" [nzFrontPagination]="false" [nzTotal]="totalNum" [nzPageIndex]="pageNum" [nzPageSize]="pageCount" (nzPageIndexChange)="change($event)">
<nz-table #nzTable [nzData]="planList" [nzFrontPagination]="false" [nzTotal]="totalNum" [nzPageIndex]="pageNum"
[nzPageSize]="pageCount" (nzPageIndexChange)="change($event)">
<thead>
<tr>
<th>计划名称</th>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment