Skip to content
opr-project.component.html 4 KiB
Newer Older
wangqinghua's avatar
wangqinghua committed
<div nz-row class="breadcrumbs">
    <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>
<div nz-row [nzGutter]="4" class="search-form">
    <div nz-col nzSpan="3">
        <button (click)="showAddModal()" nz-button nzType="default"><i class="anticon anticon-plus-circle-o"></i>新增事件
        </button>
    </div>
    <div nz-col nzSpan="5">
        <nz-select nzAllowClear style="width: 100%;" [(ngModel)]="obj.type" nzPlaceHolder="项目单位">
            <ng-container *ngFor="let item of eventTypeList">
                <nz-option [nzLabel]="item.name" [nzValue]="item.id"></nz-option>
            </ng-container>
        </nz-select>
    </div>
    <div nz-col nzSpan="8">
        <nz-date-picker
                [nzFormat]="timeFormat"
                [(ngModel)]="startTime"
                nzPlaceHolder="项目年度"></nz-date-picker>
    </div>
    <div nz-col nzSpan="4">
        <input type="text" nz-input [(ngModel)]="obj.searchStr" placeholder="项目名称、甲方名称、乙方名称、甲方负责人">
    </div>
    <div nz-col nzSpan="2">
        <button (click)="search()"
                nz-button nzType="default"><i class="anticon anticon-search" style="color: #6097b7"></i>搜索
        </button>
    </div>
</div>
<div nz-row [nzGutter]="4" class="search-form">
    <div nz-col nzSpan="5">
        项目状态:
    </div>
    <div nz-col nzSpan="3">
        <button (click)="showAddModal()" nz-button nzType="default"><i class="anticon anticon-plus-circle-o"></i>新增运维项目
        </button>
    </div>
    <div nz-col nzSpan="2">
        <button (click)="search()"
                nz-button nzType="default"><i class="anticon anticon-search" style="color: #6097b7"></i>导出
        </button>
    </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>
    </tr>
    </thead>
    <tbody>
    <tr *ngFor="let data of nzTable.data">
        <td class="round-tag tag-form">
            {{data.id}}
        </td>
        <td>
            {{data.title}}
        </td>
        <td>{{data.createTime | date:"yyyy-MM-dd HH:mm:ss"}}</td>
        <td>
            <span *ngIf="data.source == 0">系统告警</span>
            <span *ngIf="data.source == 1">手动新增</span>
        </td>
        <td>{{data.typeName}}</td>
        <td>
      <span style="margin-right: 5px;" *ngFor="let item of data?.operators">
        {{item.username}}
      </span>
        </td>
        <td>
            <span *ngIf="data.status == 0">待处理</span>
            <span *ngIf="data.status == 2">待确认</span>
            <span *ngIf="data.status == 1">已结束</span>
        </td>
        <td class="handle text-center main-color">
            <span *ngIf="data.status == 1" (click)="lookEvent(data)">查看</span>
            <span *ngIf="data.status == 0 || data.status == 2" (click)="goToHandle(data)">处理</span>
            <span *ngIf="data.status == 0 " (click)="showTransforModal(data)">转派</span>
            <span (click)="deleteHandle(data)">删除</span>
        </td>
    </tr>
    </tbody>
</nz-table>