|
@@ -98,12 +98,13 @@ function onChange(number) {
|
98
|
98
|
{
|
99
|
99
|
title: 'Name',
|
100
|
100
|
dataIndex: 'name',
|
101
|
|
- render: (_, record) => <span width={500}>{record.buildingName}</span>,
|
|
101
|
+ width:500,
|
|
102
|
+ render: (_, record) => <span stytle={{width:'450px'}} >{record.buildingName}</span>,
|
102
|
103
|
},
|
103
|
104
|
{
|
104
|
105
|
title: 'Address',
|
105
|
106
|
dataIndex: 'address',
|
106
|
|
- render: (_, record) => <span style={{ marginLeft: '-100%' }}>{record.intention}</span>,
|
|
107
|
+ render: (_, record) => <span >{record.intention}</span>,
|
107
|
108
|
},
|
108
|
109
|
];
|
109
|
110
|
return (
|
|
@@ -172,7 +173,7 @@ function onChange(number) {
|
172
|
173
|
</div>
|
173
|
174
|
{/* <img className={styles.touxiang} src={ data.picture && data.picture } /> */}
|
174
|
175
|
<div className={styles.infoItem}>
|
175
|
|
- <Table columnWidth={10} showHeader={false} columns={intention} dataSource={intentionData} pagination={false} scroll={intentionData && intentionData.length >= 3 ? { y: 240 } : false}/>
|
|
176
|
+ <Table columnWidth={10} showHeader={false} columns={intention} dataSource={intentionData} pagination={false} scroll={intentionData && intentionData.length >= 3 ? { y: 240 } : false} width={500}/>
|
176
|
177
|
</div>
|
177
|
178
|
</div>
|
178
|
179
|
|