Commit 00ca565a authored by XieZhiXiong's avatar XieZhiXiong
parents 90f72223 cc8cf398
......@@ -47,6 +47,7 @@ const Admin: React.FC = () => {
title: intl.formatMessage({ id: 'balance.danjuzhaiyao' }),
key: 'applyAbstract',
dataIndex: 'applyAbstract',
width: 300,
render: (text: any, record: any) => (
<Space direction='vertical' style={{ width: 300 }}>
<Text type='secondary'>{text}</Text>
......@@ -56,32 +57,35 @@ const Admin: React.FC = () => {
title: intl.formatMessage({ id: 'balance.qingkuanleixing' }),
key: 'applyTypeName',
dataIndex: 'applyTypeName',
width: 150,
}, {
title: intl.formatMessage({ id: 'balance.qingkuanfang' }),
title: '收款方',
key: 'payee',
dataIndex: 'payee',
width: 150,
}, {
title: intl.formatMessage({ id: 'balance.qingkuanjine' }),
key: 'applyAmount',
dataIndex: 'applyAmount',
render: (text: any, record: any) => ${priceFormat(text)}`,
width: 180
width: 150
}, {
title: intl.formatMessage({ id: 'balance.yujifukuanriqi' }),
key: 'expectPayTime',
dataIndex: 'expectPayTime',
render: (text: any, record: any) => formatTimeString(text, 'YYYY-MM-DD'),
width: 180
width: 150
}, {
title: intl.formatMessage({ id: 'balance.danjushijian' }),
key: 'createTime',
dataIndex: 'createTime',
render: (text: any, record: any) => formatTimeString(text, 'YYYY-MM-DD HH:mm'),
width: 180
width: 150
}, {
title: intl.formatMessage({ id: 'balance.waibuzhuangtai' }),
key: 'statusName',
dataIndex: 'statusName',
width: 150,
render: (text: any, record: any) => <StatusTag type='default' title={text} />
},
{
......
......@@ -50,6 +50,7 @@ const Search: React.FC = () => {
title: intl.formatMessage({ id: 'balance.danjuzhaiyao' }),
key: 'applyAbstract',
dataIndex: 'applyAbstract',
width: 300,
render: (text: any, record: any) => (
<Space direction='vertical' style={{ width: 300 }}>
<Text type='secondary'>{text}</Text>
......@@ -59,32 +60,35 @@ const Search: React.FC = () => {
title: intl.formatMessage({ id: 'balance.qingkuanleixing' }),
key: 'applyTypeName',
dataIndex: 'applyTypeName',
width: 150,
}, {
title: intl.formatMessage({ id: 'balance.qingkuanfang' }),
title: '收款方',
key: 'payee',
dataIndex: 'payee',
width: 150,
}, {
title: intl.formatMessage({ id: 'balance.qingkuanjine' }),
key: 'applyAmount',
dataIndex: 'applyAmount',
render: (text: any, record: any) => ${priceFormat(text)}`,
width: 180
width: 150
}, {
title: intl.formatMessage({ id: 'balance.yujifukuanriqi' }),
key: 'expectPayTime',
dataIndex: 'expectPayTime',
render: (text: any, record: any) => formatTimeString(text, 'YYYY-MM-DD'),
width: 180
width: 150
}, {
title: intl.formatMessage({ id: 'balance.danjushijian' }),
key: 'createTime',
dataIndex: 'createTime',
render: (text: any, record: any) => formatTimeString(text, 'YYYY-MM-DD HH:mm'),
width: 180
width: 150
}, {
title: intl.formatMessage({ id: 'balance.waibuzhuangtai' }),
key: 'statusName',
dataIndex: 'statusName',
width: 150,
render: (text: any, record: any) => <StatusTag type='default' title={text} />
}];
......
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