Newer
Older
<div nz-col nzSpan="16">
<nz-breadcrumb class="padding-8-0">
<nz-breadcrumb-item>
首页
</nz-breadcrumb-item>
<nz-breadcrumb-item>
<a>项目管理</a>
</nz-breadcrumb-item>
<nz-breadcrumb-item>
巡检计划配置
</nz-breadcrumb-item>
</nz-breadcrumb>
</div>
<div nz-col nzSpan="8" class="text-right">
<button (click)="ngOnInit()" nz-button nzType="primary"><i class="anticon anticon-sync"></i></button>
<smart-full-screen></smart-full-screen>
</div>
<div nz-col nzSpan="6">
<nz-select nzAllowClear 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="6">
<input type="text" (keyup.enter)="search()" nz-input [(ngModel)]="obj.people" placeholder="计划编号、创建人、计划名称、参与人">
</div>
<div nz-col nzSpan="2">
<button (click)="search()"
nz-button nzType="default"><i class="anticon anticon-search"></i>搜索
</button>
</div>
<div nz-col nzSpan="3">
<button (click)="handleOpenModal()"
nz-button nzType="default"><i class="anticon anticon-plus-circle-o"></i>创建计划
</button>
</div>
<div nz-col nzSpan="9">
<span class="main-color margin-right-15">执行时间:</span>
<nz-radio-group [(ngModel)]="time.type">
<label *ngFor="let item of timeType" (click)="changeTimeType()" nz-radio-button
[nzValue]="item.value">{{item.label}}</label>
</nz-radio-group>
</div>
<nz-date-picker
[nzFormat]="timeFormat"
[(ngModel)]="time.startTime"
nzPlaceHolder="开始时间"></nz-date-picker>
<nz-date-picker
[nzFormat]="timeFormat"
[(ngModel)]="time.endTime"
nzPlaceHolder="结束时间"></nz-date-picker>
</ng-container>
</div>
</div>
<nz-table #nzTable [nzData]="page.list" [nzLoading]="page.isLoading" [nzFrontPagination]="false"
[nzTotal]="page.totalNum"
[nzPageIndex]="page.pageNum" [nzPageSize]="page.pageCount" (nzPageIndexChange)="change($event)">
<thead>
<tr>
<th>计划编号</th>
<th>计划名称</th>
<th>计划类型</th>
<th>创建人</th>
<th>开始日期</th>
<th>结束时间</th>
<th>循环周期</th>
<th>下次执行时间</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let data of nzTable.data">
<td>{{data.projectName}}</td>
<td>{{data.startTime | date:'yyyy-MM-dd'}}</td>
<td>{{data.endTime | date:'yyyy-MM-dd'}}</td>
<td>
<span *ngIf="data.cycleType == '0'">每天</span>
<span *ngIf="data.cycleType == '1'">工作日</span>
<span *ngIf="data.cycleType == '2'">每周</span>
<span *ngIf="data.cycleType == '3'">每月</span>
<span *ngIf="data.cycleType == '4'">每季度</span>
<span *ngIf="data.cycleType == '5'">每半年</span>
<span *ngIf="data.cycleType == '6'">无</span>
/{{data.cycleNum}}次
</td>
<td>{{data.outsourcingnum}}</td>
<span *ngIf="data.status != 2" (click)="editPlan(data.id)">编辑</span>
<span class="handle-delete" (click)="deletePlan(data)">删除</span>
<smart-plan-config #smartPlanConfig (done)="getList()"></smart-plan-config>