|
|
|
@ -491,8 +491,8 @@ export const BankColumns: BasicColumn[] = [
|
|
|
|
|
align: 'left',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '银行名称2',
|
|
|
|
|
dataIndex: 'bankName2',
|
|
|
|
|
title: '英文银行名称',
|
|
|
|
|
dataIndex: 'bankEnName',
|
|
|
|
|
width: 230,
|
|
|
|
|
align: 'left',
|
|
|
|
|
},
|
|
|
|
@ -508,6 +508,12 @@ export const BankColumns: BasicColumn[] = [
|
|
|
|
|
width: 230,
|
|
|
|
|
align: 'left',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '英文银行地址',
|
|
|
|
|
dataIndex: 'bankEnAddress',
|
|
|
|
|
width: 230,
|
|
|
|
|
align: 'left',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'ABA代码',
|
|
|
|
|
dataIndex: 'aba',
|
|
|
|
@ -520,6 +526,12 @@ export const BankColumns: BasicColumn[] = [
|
|
|
|
|
width: 230,
|
|
|
|
|
align: 'left',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '英文户头名称',
|
|
|
|
|
dataIndex: 'accountEnName',
|
|
|
|
|
width: 230,
|
|
|
|
|
align: 'left',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '科目代码',
|
|
|
|
|
dataIndex: 'subjectCode',
|
|
|
|
@ -629,6 +641,15 @@ export const BankformSchema: FormSchema[] = [
|
|
|
|
|
span: 12,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '英文银行名称',
|
|
|
|
|
field: 'bankEnName',
|
|
|
|
|
component: 'Input',
|
|
|
|
|
defaultValue: '',
|
|
|
|
|
colProps: {
|
|
|
|
|
span: 12,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '银行账户',
|
|
|
|
|
field: 'bankAccountNo',
|
|
|
|
@ -638,6 +659,16 @@ export const BankformSchema: FormSchema[] = [
|
|
|
|
|
span: 12,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
label: 'ABA代码',
|
|
|
|
|
field: 'aba',
|
|
|
|
|
component: 'Input',
|
|
|
|
|
defaultValue: '',
|
|
|
|
|
colProps: {
|
|
|
|
|
span: 12,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '银行地址',
|
|
|
|
|
field: 'bankAddress',
|
|
|
|
@ -648,8 +679,8 @@ export const BankformSchema: FormSchema[] = [
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: 'ABA代码',
|
|
|
|
|
field: 'aba',
|
|
|
|
|
label: '英文银行地址',
|
|
|
|
|
field: 'bankEnAddress',
|
|
|
|
|
component: 'Input',
|
|
|
|
|
defaultValue: '',
|
|
|
|
|
colProps: {
|
|
|
|
@ -665,6 +696,15 @@ export const BankformSchema: FormSchema[] = [
|
|
|
|
|
span: 12,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '英文户头名称',
|
|
|
|
|
field: 'accountEnName',
|
|
|
|
|
component: 'Input',
|
|
|
|
|
defaultValue: '',
|
|
|
|
|
colProps: {
|
|
|
|
|
span: 12,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '科目代码',
|
|
|
|
|
field: 'subjectCode',
|
|
|
|
|