Newer
Older
<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-item>
子分类详情
</nz-breadcrumb-item>
</nz-breadcrumb>
</div>
<div nz-col nzSpan="8" class="text-right">
<button nz-button nzType="primary"><i class="anticon anticon-search"></i></button>
<button nz-button nzType="primary"><i class="anticon anticon-sync"></i></button>
<button nz-button nzType="primary"><i class="anticon anticon-arrows-alt"></i></button>
</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"></i>添加资产</button>
<button nz-button nzType="default"><i class="anticon anticon-upload"></i>导入资产</button>
<button nz-button nzType="default"><i class="anticon anticon-download"></i>下载模版</button>
</div>
</div>
<nz-table #nzTable [nzData]="childrenList">
<thead>
<tr>
<th>资产编号</th>
<th>资产名称</th>
<th>资产总数</th>
<th>库存</th>
<th>使用</th>
<th>借出</th>
<th>维修</th>
<th>报废</th>
<th>关联事件</th>
<th style="text-align: center">操作</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let data of childrenList">
<td class="round-tag tag-form">
{{data.name}}
</td>
<td>
<td>{{data.stock}}</td>
<td>
{{data.usedcount}}
</td>
<td>{{data.lendcount}}</td>
<td>
{{data.repaircount}}
</td>
<td>
{{data.scrapcount}}
</td>
<td>关联事件</td>
<td class="handle text-center">
<smart-assets #smartAssets (done)="getList()"></smart-assets>
<!--倒入资产-->
<smart-upload #smartUpload></smart-upload>