|
@@ -3,7 +3,7 @@ import Taro, { useDidShow } from '@tarojs/taro'
|
3
|
3
|
import MoreGuide from "@/components/MoreGuide";
|
4
|
4
|
import BossCard from '@/components/BossCard'
|
5
|
5
|
import SpinBox from "@/components/Spin/SpinBox";
|
6
|
|
-
|
|
6
|
+import {Image } from "@tarojs/components";
|
7
|
7
|
import GPS from '@/assets/icons/GuideCheck/GPS.png'
|
8
|
8
|
import copy_logo from '@/assets/icons/GuideCheck/copy_logo.png'
|
9
|
9
|
import Cup from '@/assets/icons/GuideCheck/Cup.png'
|
|
@@ -145,7 +145,9 @@ export default (props) => {
|
145
|
145
|
}
|
146
|
146
|
})
|
147
|
147
|
}
|
148
|
|
-
|
|
148
|
+ const goIndex=()=>{
|
|
149
|
+ Taro.redirectTo({url:'/pages/index/index'})
|
|
150
|
+ }
|
149
|
151
|
return (
|
150
|
152
|
<scroll-view scrollY style={{ height: '100%' }} >
|
151
|
153
|
<view className='Guide-Home-box'>
|
|
@@ -256,7 +258,7 @@ export default (props) => {
|
256
|
258
|
<view style={{ marginTop: '10rpx', paddingBottom: '60rpx' }}>
|
257
|
259
|
{(spackage || []).map((item, index) => <BossCard det={item} st={parseFloat(item.score.toFixed(1))} key={(index)} trackClick={trackClick} taRoomContent={taRoomContent} item={item} />)}
|
258
|
260
|
</view>
|
259
|
|
- {/* <Image src={} /> */}
|
|
261
|
+ <Image mode='widthFix' style={{width:'100%'}} src='http://yz-shigongli.oss-cn-shanghai.aliyuncs.com/images/hotel_guide_help.png' onClick={goIndex}/>
|
260
|
262
|
</view>
|
261
|
263
|
</scroll-view>
|
262
|
264
|
)
|