车辆对接
This commit is contained in:
@ -34,23 +34,57 @@ export class NetworkFreightComponent implements OnInit {
|
||||
editId = false;
|
||||
|
||||
columns: STColumn[] = [
|
||||
{ title: '公司名称', index: 'enterpriseName' },
|
||||
{ title: '纳税人识别号', index: 'taxCode' },
|
||||
{ title: '发票税率', index: 'invoiceTaxRate' },
|
||||
{ title: '电子发票账号', index: 'electronicInvoiceAccount' },
|
||||
{ title: 'ETC账号', index: 'etcAccount' },
|
||||
{ title: '电子合同账号', index: 'electronicContractAccount' },
|
||||
{ title: '开户行', index: 'bankName' },
|
||||
{ title: '虚拟账户', index: 'virtualAccount' },
|
||||
{
|
||||
title: '公司名称',
|
||||
width: '180px',
|
||||
index: 'enterpriseName'
|
||||
},
|
||||
{
|
||||
title: '纳税人识别号',
|
||||
width: '180px',
|
||||
|
||||
index: 'taxCode' },
|
||||
{
|
||||
title: '发票税率',
|
||||
width: '150px',
|
||||
|
||||
index: 'invoiceTaxRate' },
|
||||
{
|
||||
title: '电子发票账号',
|
||||
width: '150px',
|
||||
|
||||
|
||||
index: 'electronicInvoiceAccount' },
|
||||
{
|
||||
title: 'ETC账号',
|
||||
width: '150px',
|
||||
|
||||
index: 'etcAccount' },
|
||||
{
|
||||
title: '电子合同账号',
|
||||
width: '150px',
|
||||
index: 'electronicContractAccount' },
|
||||
{
|
||||
title: '开户行',
|
||||
width: '150px',
|
||||
index: 'bankName' },
|
||||
{
|
||||
title: '虚拟账户',
|
||||
width: '150px',
|
||||
index: 'virtualAccount' },
|
||||
{
|
||||
title: '附加费比例',
|
||||
index: 'surchargeRate',
|
||||
width: '150px',
|
||||
format: (item: any) => {
|
||||
return item.surchargeRate + '%';
|
||||
}
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
width: '80px',
|
||||
fixed: 'right',
|
||||
className: 'text-left',
|
||||
buttons: [
|
||||
{
|
||||
text: '财务设置',
|
||||
|
||||
Reference in New Issue
Block a user