|
|
|
@ -2,7 +2,20 @@
|
|
|
|
|
<div class="list"> |
|
|
|
|
<div class="item" *ngFor="let item of data.data"> |
|
|
|
|
<div class="text"> |
|
|
|
|
{{item.company.companyName}} |
|
|
|
|
<p>单位名称 : {{item.company.companyName}}</p> |
|
|
|
|
<p>单位级别 : {{item.company.useNature}}</p> |
|
|
|
|
<p>主负责人 : {{item.organization.name}}</p> |
|
|
|
|
<p>协助人员 : |
|
|
|
|
<span class="assistant"> |
|
|
|
|
<span *ngFor="let o of item.supervisors"> |
|
|
|
|
<img *ngIf="o.posts && o.posts[0] == '主查人员'" src="../../../../assets/images/icon/main.png" |
|
|
|
|
alt=""> |
|
|
|
|
<img *ngIf="o.posts && o.posts[0] == '协查人员'" src="../../../../assets/images/icon/assist.png" |
|
|
|
|
alt=""> |
|
|
|
|
{{o.name}} |
|
|
|
|
</span> |
|
|
|
|
</span> |
|
|
|
|
</p> |
|
|
|
|
</div> |
|
|
|
|
<div class="state"> |
|
|
|
|
<span class="green" (click)="accept(item)">接受</span> |
|
|
|
|