Commit 2d8212a3 authored by Bill's avatar Bill

修改对公账号配置

parent 7c493dd5
...@@ -156,8 +156,8 @@ const CorporateAccount = () => { ...@@ -156,8 +156,8 @@ const CorporateAccount = () => {
name: '银行账号', name: '银行账号',
dataIndex: 'bankAccount', dataIndex: 'bankAccount',
image: bank_account, image: bank_account,
value: data.bankAccount, value: data && data.bankAccount || '',
cacheValue: data.bankAccount, cacheValue: data && data.bankAccount || '',
isEdit: false, isEdit: false,
canEdit: true, canEdit: true,
pattern: /^([1-9]{1})(\d{14}|\d{18})$/, pattern: /^([1-9]{1})(\d{14}|\d{18})$/,
...@@ -167,8 +167,8 @@ const CorporateAccount = () => { ...@@ -167,8 +167,8 @@ const CorporateAccount = () => {
name: '开户行', name: '开户行',
dataIndex: 'bankDeposit', dataIndex: 'bankDeposit',
image: bank, image: bank,
value: data.bankDeposit, value: data && data.bankDeposit || '',
cacheValue: data.bankDeposit, cacheValue: data && data.bankDeposit || '',
isEdit: false, isEdit: false,
canEdit: true, canEdit: true,
pattern: /^[\u4e00-\u9fa5]{0,50}|[0-9a-zA-Z]{0,100}$/, pattern: /^[\u4e00-\u9fa5]{0,50}|[0-9a-zA-Z]{0,100}$/,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment