|
@@ -50,7 +50,7 @@ export default function AddedValueService () {
|
50
|
50
|
payload[item.key] = item.result || item.resultId
|
51
|
51
|
})
|
52
|
52
|
fetch({ url: API_HELP_FIND_HOUSE_SUBMIT, method: 'post', payload: { ...payload, questionnaire: JSON.stringify(params), type: 4 } }).then((res) => {
|
53
|
|
- setResultList(res.taBuildingList || [])
|
|
53
|
+ setResultList(res?.taBuildingList || [])
|
54
|
54
|
setShowPopup(true)
|
55
|
55
|
})
|
56
|
56
|
}
|
|
@@ -132,7 +132,7 @@ export default function AddedValueService () {
|
132
|
132
|
<view className='components AddedValueService flex-v'>
|
133
|
133
|
{
|
134
|
134
|
ShowPopup &&
|
135
|
|
- <SubmitBuyHouseResult List={ResultList.slice(0, 1)} ShowResult={false}></SubmitBuyHouseResult>
|
|
135
|
+ <SubmitBuyHouseResult List={ResultList} ShowResult={false}></SubmitBuyHouseResult>
|
136
|
136
|
}
|
137
|
137
|
<view className='flex-item'>
|
138
|
138
|
<view>
|