edit
This commit is contained in:
@ -52,7 +52,7 @@
|
||||
</nz-card>
|
||||
|
||||
<nz-card class="content-box">
|
||||
<st #st [data]="url" [columns]="columns" [req]="{ process: beforeReq }" [scroll]="{ x: '1200px' }"
|
||||
[loading]="service.http.loading">
|
||||
<st #st [data]="service.$api_get_platform_page" [columns]="columns" [req]="{ process: beforeReq }"
|
||||
[scroll]="{ x: '1200px' }" [loading]="service.http.loading">
|
||||
</st>
|
||||
</nz-card>
|
||||
@ -18,9 +18,6 @@ export class PlatformAccountComponent implements OnInit {
|
||||
searchSchema: SFSchema = this.initSF();
|
||||
columns: STColumn[] = this.initST();
|
||||
|
||||
url = `/rule?_allow_anonymous=true`;
|
||||
|
||||
|
||||
constructor(public service: FreightAccountService, private router: Router, private nzModalService: NzModalService) {}
|
||||
|
||||
ngOnInit(): void {}
|
||||
@ -88,7 +85,7 @@ export class PlatformAccountComponent implements OnInit {
|
||||
|
||||
private initST(): STColumn[] {
|
||||
return [
|
||||
{ title: '网络货运人', index: 'description', width: 180 },
|
||||
{ title: '网络货运人', index: 'ltdName', width: 180 },
|
||||
{ title: '银行类型', index: 'description', width: 120 },
|
||||
{ title: '虚拟账户', index: 'description', width: 140 },
|
||||
{
|
||||
|
||||
@ -21,6 +21,8 @@ export class FreightAccountService extends ShipperBaseService {
|
||||
$api_get_shipper_account_page = '/api/fcc/accountBalance/getShipperAccountBalanceByOperator';
|
||||
// 运营端获取司机账户信息
|
||||
$api_get_driver_account_page = '/api/fcc/accountBalance/getDriverAccountBalanceByOperator';
|
||||
// 运营端获取平台余额
|
||||
$api_get_platform_page = '/api/fcc/accountBalance/getPlatformBalanceByOperator';
|
||||
|
||||
// 运营端获取货主账户明细信息
|
||||
$api_get_shipper_account_detail = '/api/fcc/accountBalanceDetail/getAccountBalanceShipperByOperatorPage';
|
||||
|
||||
Reference in New Issue
Block a user