This commit is contained in:
Taric Xin
2022-02-15 16:55:42 +08:00
parent 5da35efeb0
commit e431261f9d
2 changed files with 20 additions and 3 deletions

View File

@ -148,6 +148,18 @@
<label *ngIf="detailData?.approvalStatus===30" style="color: #ff4d4f;"><i nz-icon nzType="close-circle" <label *ngIf="detailData?.approvalStatus===30" style="color: #ff4d4f;"><i nz-icon nzType="close-circle"
nzTheme="fill" class="mr-xs"></i>驳回&nbsp;驳回原因:{{detailData?.approvalOpinion}} nzTheme="fill" class="mr-xs"></i>驳回&nbsp;驳回原因:{{detailData?.approvalOpinion}}
</label> </label>
<p style="margin-bottom: 0;">
四要素验证:
<label *ngIf="detailData?.esignCheckStatus===0" style="color: #ff4d4f;"><i nz-icon nzType="info-circle"
nzTheme="fill" class="mr-xs"></i>不通过&nbsp;&nbsp;驳回原因:{{detailData?.esignCheckMsg}}
</label>
<label *ngIf="detailData?.esignCheckStatus===1" style="color: #52c41a;"><i nz-icon nzType="check-circle"
nzTheme="fill" class="mr-xs"></i>通过
</label>
<label *ngIf="detailData?.esignCheckStatus===2" style="color: #1890ff;"><i nz-icon nzType="close-circle"
nzTheme="fill" class="mr-xs"></i>未认证
</label>
</p>
</sv-title> </sv-title>
<sv label="公司名称"> <sv label="公司名称">
<input nz-input type="text" [(ngModel)]="detailData.enterpriseName" [readonly]="!isEdit" [nzBorderless]="!isEdit" <input nz-input type="text" [(ngModel)]="detailData.enterpriseName" [readonly]="!isEdit" [nzBorderless]="!isEdit"

View File

@ -33,6 +33,12 @@ export class FreightComponentsListDetailComponent implements OnInit {
approvalOpinion = ''; approvalOpinion = '';
networkTransporter = null; networkTransporter = null;
esignCheckStatus: any = {
0: '不通过',
1: '通过',
2: '未认证'
};
constructor( constructor(
public service: UsermanageService, public service: UsermanageService,
private route: ActivatedRoute, private route: ActivatedRoute,
@ -48,8 +54,7 @@ export class FreightComponentsListDetailComponent implements OnInit {
this.service.getNetworkFreightForwarder().subscribe(res => { this.service.getNetworkFreightForwarder().subscribe(res => {
if (res) { if (res) {
this.ltdId = res; this.ltdId = res;
console.log(this.ltdId ); console.log(this.ltdId);
} }
}); });
} }
@ -68,7 +73,7 @@ export class FreightComponentsListDetailComponent implements OnInit {
Number(this.detailData.fullRegionVO?.cityCode), Number(this.detailData.fullRegionVO?.cityCode),
Number(this.detailData.fullRegionVO?.areaCode) Number(this.detailData.fullRegionVO?.areaCode)
]; ];
console.log(this.enterpriseAddressCode) console.log(this.enterpriseAddressCode);
} }
console.log(res); console.log(res);
}); });