-
This commit is contained in:
@ -16,9 +16,9 @@
|
|||||||
</ng-template>
|
</ng-template>
|
||||||
</page-header-wrapper>
|
</page-header-wrapper>
|
||||||
|
|
||||||
<nz-card>
|
<nz-card [nzLoading]="service.http.loading">
|
||||||
<nz-alert nzType="info" nzMessage="提现信息" class="mb-md"></nz-alert>
|
<nz-alert nzType="info" nzMessage="提现信息" class="mb-md"></nz-alert>
|
||||||
<div se-container [labelWidth]="100">
|
<div se-container [labelWidth]="130">
|
||||||
<se label="网络货运人">
|
<se label="网络货运人">
|
||||||
{{formData?.ltdName}}
|
{{formData?.ltdName}}
|
||||||
</se>
|
</se>
|
||||||
@ -41,16 +41,16 @@
|
|||||||
{{formData?.refundStatusLabel}}
|
{{formData?.refundStatusLabel}}
|
||||||
</se>
|
</se>
|
||||||
<se label="提现金额">
|
<se label="提现金额">
|
||||||
{{formData?.amount}}
|
{{formData?.amount | currency}}
|
||||||
</se>
|
</se>
|
||||||
<se label="银行流水号">
|
<se label="银行流水号">
|
||||||
{{formData?.bankSerialNumber}}
|
{{formData?.bankSerialNumber}}
|
||||||
</se>
|
</se>
|
||||||
<se label="提现至银行卡">
|
<se label="提现至银行卡">
|
||||||
{{formData?.bankId}}
|
{{formData?.bankCardNumber}}
|
||||||
</se>
|
</se>
|
||||||
<se label="银行回单" col="1">
|
<se label="银行回单" col="1">
|
||||||
<img [src]="formData?.bankCardNumber" alt="" style="width: 200px;height: 160px;">
|
<a (click)="downBack()">{{formData?.refundStatus==='3'?'下载回单':'暂无回单'}}</a>
|
||||||
</se>
|
</se>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@ -2,8 +2,9 @@ import { Component, OnInit } from '@angular/core';
|
|||||||
import { ActivatedRoute } from '@angular/router';
|
import { ActivatedRoute } from '@angular/router';
|
||||||
import { FreightAccountService } from 'src/app/routes/financial-management/services/freight-account.service';
|
import { FreightAccountService } from 'src/app/routes/financial-management/services/freight-account.service';
|
||||||
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-partner-account-management-withdrawals-detail',
|
selector: 'app-withdrawals-detail',
|
||||||
templateUrl: './withdrawals-detail.component.html',
|
templateUrl: './withdrawals-detail.component.html',
|
||||||
styleUrls: ['./withdrawals-detail.component.less']
|
styleUrls: ['./withdrawals-detail.component.less']
|
||||||
})
|
})
|
||||||
@ -67,6 +68,19 @@ export class PartnerAccountManagementWithdrawalsDetailComponent implements OnIni
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
downBack() {
|
||||||
|
if (this.formData?.refundStatus !== '3') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.service.getReceiptUrl(this.formData.receiptUrl, {
|
||||||
|
bankType: this.formData.bankType,
|
||||||
|
rmYll: this.formData.userId,
|
||||||
|
snglFlgCd: this.formData.coreSerNo,
|
||||||
|
bussType: '06',
|
||||||
|
ltdId: this.formData.ltdId
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
goBack() {
|
goBack() {
|
||||||
history.go(-1);
|
history.go(-1);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user