|
@@ -3,6 +3,7 @@ import ax from '@/assets/icons/housemantj/onlove.png'
|
3
|
3
|
import dw from '@/assets/icons/housemantj/loc-o.png'
|
4
|
4
|
import titlejd from '@/assets/icons/housemantj/goodTourist.png'
|
5
|
5
|
import titlems from '@/assets/icons/housemantj/goodFood.png'
|
|
6
|
+import showMore from '@/assets/icons/housemantj/setMore.png'
|
6
|
7
|
import share from '@/assets/icons/housemantj/touristShare.png'
|
7
|
8
|
import good from '@/assets/icons/housemantj/touristGood.png'
|
8
|
9
|
import baozan from '@/assets/icons/housemantj/bgood.png'
|
|
@@ -38,6 +39,7 @@ export default withLayout((props) => {
|
38
|
39
|
|
39
|
40
|
//本店指南
|
40
|
41
|
const [extend, setExtend] = useState([])
|
|
42
|
+
|
41
|
43
|
// 推荐套餐列表
|
42
|
44
|
const [recommend, setRecommend] = useState([])
|
43
|
45
|
|
|
@@ -65,7 +67,6 @@ export default withLayout((props) => {
|
65
|
67
|
})
|
66
|
68
|
getExtendContent('tourist', id, { pageSize: 500 }).then((res) => {
|
67
|
69
|
setExtend(res.records || [])
|
68
|
|
- setAllextNum(res.total)
|
69
|
70
|
setLoading(false)
|
70
|
71
|
|
71
|
72
|
})
|
|
@@ -143,6 +144,7 @@ export default withLayout((props) => {
|
143
|
144
|
<image src={titlejd} />景点介绍
|
144
|
145
|
</view>
|
145
|
146
|
{(extend || []).map((item) => <Extend item={item} />)}
|
|
147
|
+
|
146
|
148
|
</view>
|
147
|
149
|
<view style={{ position: 'relative', marginTop: '6em', display: recommend == '' ? 'none' : '' }}>
|
148
|
150
|
<view className='title'>
|
|
@@ -150,7 +152,7 @@ export default withLayout((props) => {
|
150
|
152
|
</view>
|
151
|
153
|
{(recommend || []).map((item) => <Cards item={item} det={item} st={parseFloat(item.score.toFixed(1))} />)}
|
152
|
154
|
</view>
|
153
|
|
- <view className='bottom'>这是我的底线</view>
|
|
155
|
+ <view className='botton'>这是我的底线</view>
|
154
|
156
|
</scroll-view>
|
155
|
157
|
</SpinBox>
|
156
|
158
|
|