Commit 4b93dad2 authored by Sixiang_Zzb's avatar Sixiang_Zzb

物业费列表展示问题修改,业主服务翻译修改

parent 9c47c2fe
...@@ -38,7 +38,7 @@ const TableShow = (props: any) => { ...@@ -38,7 +38,7 @@ const TableShow = (props: any) => {
const key = objectColumns([ const key = objectColumns([
['User Name', 'owner_family_name'], ['User Name', 'owner_family_name'],
['Contact Details', 'owner_family_phone', (text: string, record: any) => text || '--'], ['Contact Number', 'owner_family_phone', (text: string, record: any) => text || '--'],
['Email', 'owner_family_email', (text: string, record: any) => text || '--'], ['Email', 'owner_family_email', (text: string, record: any) => text || '--'],
[ [
'User Type', 'User Type',
......
...@@ -157,7 +157,7 @@ const ChargeManager = (props: any) => { ...@@ -157,7 +157,7 @@ const ChargeManager = (props: any) => {
), ),
); );
}; };
console.log(Data);
return ( return (
<div className={styles.base}> <div className={styles.base}>
<TitleSearch <TitleSearch
...@@ -170,6 +170,7 @@ const ChargeManager = (props: any) => { ...@@ -170,6 +170,7 @@ const ChargeManager = (props: any) => {
{Data !== null ? ( {Data !== null ? (
<ProTable<GithubIssueItem> <ProTable<GithubIssueItem>
columnEmptyText={false}
columns={columns} columns={columns}
dataSource={Data.list} dataSource={Data.list}
rowKey={'id'} rowKey={'id'}
......
...@@ -370,7 +370,7 @@ const UsersDetail = (props: any) => { ...@@ -370,7 +370,7 @@ const UsersDetail = (props: any) => {
<Col span={4}>{memberData.owner_family_name}</Col> <Col span={4}>{memberData.owner_family_name}</Col>
</Row> </Row>
<Row gutter={16}> <Row gutter={16}>
<Col span={4}>Contact Detail</Col> <Col span={4}>Contact Number</Col>
<Col span={4}>{memberData.owner_family_phone}</Col> <Col span={4}>{memberData.owner_family_phone}</Col>
<Col span={4}>{memberData.owner_family_email}</Col> <Col span={4}>{memberData.owner_family_email}</Col>
</Row> </Row>
......
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