|
@@ -9,6 +9,7 @@ import useParams from '@/utils/hooks/useParams'
|
9
|
9
|
import useShare from '@/utils/hooks/useShare'
|
10
|
10
|
import usePoster from '@/utils/hooks/usePoster'
|
11
|
11
|
import { savePoint } from '@/services/common'
|
|
12
|
+import { addItemUv } from '@/services/item'
|
12
|
13
|
import DetailBottom from './components/DetailBottom/index'
|
13
|
14
|
import BuildingDetailBanner from './components/BuildingDetailBanner/index'
|
14
|
15
|
import BasicInfo from './components/BasicInfo/index'
|
|
@@ -54,6 +55,7 @@ export default withLayout((props) => {
|
54
|
55
|
eventType: 'building',
|
55
|
56
|
targetType: 'building'
|
56
|
57
|
})
|
|
58
|
+ addItemUv(id)
|
57
|
59
|
}
|
58
|
60
|
}, [trackData, DetailInfo])
|
59
|
61
|
|