From 48d62f13e7892a3c2a3d9faf316eaa7115f3b3bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E5=90=8C=E6=B5=B7?= <14166000+zhangtonghai@user.noreply.gitee.com> Date: Tue, 5 Nov 2024 17:53:31 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=84=E7=BB=87=E6=9C=BA=E6=9E=84=20?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20=20=E8=8B=B1=E6=96=87=E9=93=B6=E8=A1=8C?= =?UTF-8?q?=E5=90=8D=E7=A7=B0=E3=80=81=E8=8B=B1=E6=96=87=E6=88=B7=E5=A4=B4?= =?UTF-8?q?=E5=90=8D=E7=A7=B0=E3=80=81=E8=8B=B1=E6=96=87=E9=93=B6=E8=A1=8C?= =?UTF-8?q?=E5=9C=B0=E5=9D=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/org/columns.tsx | 48 +++++++++++++++++++++++++++++--- 1 file changed, 44 insertions(+), 4 deletions(-) diff --git a/src/views/system/org/columns.tsx b/src/views/system/org/columns.tsx index b5124cb0..3ccdb32d 100644 --- a/src/views/system/org/columns.tsx +++ b/src/views/system/org/columns.tsx @@ -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',