You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<div>
|
|
|
|
<div class="list">
|
|
|
|
<div class="item" *ngFor="let item of data.data">
|
|
|
|
<div class="text">
|
|
|
|
<p>单位名称 : {{item.company.companyName}}</p>
|
|
|
|
<p>单位级别 : {{item.company.useNature}}</p>
|
|
|
|
<p>主负责人 : {{item.organization.level == 'battalion'? item.creator.name :
|
|
|
|
item.organization.name}}</p>
|
|
|
|
<p>协助人员 :
|
|
|
|
<span class="assistant">
|
|
|
|
<span *ngFor="let i of item.assistantOrganizations">
|
|
|
|
{{i.name}}
|
|
|
|
</span>
|
|
|
|
<span *ngFor="let i of item.supervisors">
|
|
|
|
{{i.name}}
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div class="state">
|
|
|
|
<span class="green" (click)="accept(item)" *ngIf="item.approvalStatus!='已检查'">接受</span>
|
|
|
|
<span class="red" (click)="reject(item)" *ngIf="item.approvalStatus!='已检查'">拒绝</span>
|
|
|
|
<span>{{item.approvalStatus}}</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|