edit
This commit is contained in:
@ -70,12 +70,12 @@ export class FreightAccountComponent implements OnInit {
|
||||
title: '企业名称',
|
||||
ui: { placeholder: '请输入' }
|
||||
},
|
||||
phone: {
|
||||
name: {
|
||||
type: 'string',
|
||||
title: '联系人',
|
||||
ui: { placeholder: '请输入' }
|
||||
},
|
||||
page: {
|
||||
phone: {
|
||||
type: 'string',
|
||||
title: '联系人电话',
|
||||
ui: {
|
||||
@ -141,13 +141,13 @@ export class FreightAccountComponent implements OnInit {
|
||||
private initST(): STColumn[] {
|
||||
return [
|
||||
{ title: '企业名称', index: 'tenantName' },
|
||||
{ title: '联系人', index: 'description' },
|
||||
{ title: '联系人电话', index: 'description' },
|
||||
{ title: '网络货运人', index: 'ltdid' },
|
||||
{ title: '联系人', index: 'name' },
|
||||
{ title: '联系人电话', index: 'phone' },
|
||||
{ title: '网络货运人', index: 'ltdName' },
|
||||
{ title: '银行类型', index: 'bankType', type: 'enum', enum: { 1: '平安银行', 2: '浦发银行' } },
|
||||
{ title: '虚拟账户', index: 'virtualAccount' },
|
||||
{ title: '可用余额', index: 'availableBalance' },
|
||||
{ title: '冻结余额', index: 'freezeBalance' },
|
||||
{ title: '冻结余额', index: 'availableBalance' },
|
||||
{ title: '累计消费金额', index: 'description' },
|
||||
{ title: '账户总余额', render: 'availableBalance' },
|
||||
{ title: '创建时间', index: 'createTime', type: 'date', width: 150 },
|
||||
@ -162,7 +162,17 @@ export class FreightAccountComponent implements OnInit {
|
||||
buttons: [
|
||||
{
|
||||
text: '查看明细',
|
||||
click: item => this.router.navigate(['/financial-management/freight-account/detail/' + item.id])
|
||||
click: item =>
|
||||
this.router.navigate(['/financial-management/freight-account/detail/' + item.id], {
|
||||
queryParams: {
|
||||
tenantName: item.tenantName,
|
||||
ltdName: item.ltdName,
|
||||
bankType: item.bankType,
|
||||
projectId: item.projectId,
|
||||
roleId: item.roleId,
|
||||
ltdid: item.ltdid
|
||||
}
|
||||
})
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user