|
@@ -4,6 +4,8 @@ import MoreGuide from "@/components/MoreGuide";
|
4
|
4
|
import BossCard from '@/components/BossCard'
|
5
|
5
|
import Taxi from '@/assets/icons/GuideCheck/taxi.png'
|
6
|
6
|
import WiFi from '@/assets/icons/GuideCheck/WiFi.png'
|
|
7
|
+import GPS from '@/assets/icons/GuideCheck/GPS.png'
|
|
8
|
+import copy_logo from '@/assets/icons/GuideCheck/copy_logo.png'
|
7
|
9
|
import GoHere from '@/assets/icons/GuideCheck/GoHere.png'
|
8
|
10
|
import Cup from '@/assets/icons/GuideCheck/Cup.png'
|
9
|
11
|
import BlackSpot from '@/assets/icons/GuideCheck/BlackSpot.png'
|
|
@@ -178,7 +180,7 @@ export default (props) => {
|
178
|
180
|
{
|
179
|
181
|
ifroomId === 'reality' && (
|
180
|
182
|
<view>
|
181
|
|
-
|
|
183
|
+ {/*
|
182
|
184
|
<view className='MessageCard'>
|
183
|
185
|
<view className='MessageCard-title1'>
|
184
|
186
|
<text className='MessageCard-left'>----------</text>
|
|
@@ -232,6 +234,58 @@ export default (props) => {
|
232
|
234
|
<image className='MessageCard-image' src={WiFi} />
|
233
|
235
|
<text className='MessageCard-text'>复制</text>
|
234
|
236
|
</view>
|
|
237
|
+ </view> */}
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+ <view className='room-box-info-ROOM'>
|
|
241
|
+ <view className='room-bi-name-ROOM' >
|
|
242
|
+ <view className='room-bin-title-ROOM'>房屋名称</view>
|
|
243
|
+ <view className='room-bint-nameInfo-ROOM'>{taRoomContent?.roomName}
|
|
244
|
+ </view>
|
|
245
|
+ </view>
|
|
246
|
+ </view>
|
|
247
|
+ {/* --------房屋位置-------- */}
|
|
248
|
+
|
|
249
|
+ <view className='room-box-info-HouLocation'>
|
|
250
|
+ <view className='room-bi-name-HouLocation' >
|
|
251
|
+ <view className='room-bin-title-HouLocation'>房屋位置</view>
|
|
252
|
+ <view className='room-bint-nameInfo-HouLocation'>
|
|
253
|
+ <view className='room-bint-nameInfo-bool-HouLocation' >{taRoomContent?.address}</view>
|
|
254
|
+ <view className='room-bintn-button-HouLocation' onClick={() => { goRoomMap() }} style={{ display: wifiButtonStyle }}>
|
|
255
|
+ <image className='room-bintn-image-HouLocation' src={GPS} />
|
|
256
|
+ <text className='room-bintn-text-HouLocation'>去这里</text>
|
|
257
|
+ </view>
|
|
258
|
+ </view>
|
|
259
|
+ </view>
|
|
260
|
+ </view>
|
|
261
|
+ {/* --------停车场-------- */}
|
|
262
|
+
|
|
263
|
+ <view className='room-box-info-Parking'>
|
|
264
|
+ <view className='room-bi-name-Parking' >
|
|
265
|
+ <view className='room-bin-title-Parking'>停车位置</view>
|
|
266
|
+ <view className='room-bint-nameInfo-Parking'>
|
|
267
|
+ <view className='room-bint-nameInfo-bool-Parking' >{taRoomContent?.parkingAddress}</view>
|
|
268
|
+ <view className='room-bintn-button-Parking' onClick={() => { goParkMap() }} style={{ display: wifiButtonStyle }}>
|
|
269
|
+ <image className='room-bintn-image-Parking' src={GPS} />
|
|
270
|
+ <text className='room-bintn-text-Parking'>去这里</text>
|
|
271
|
+ </view>
|
|
272
|
+ </view>
|
|
273
|
+ </view>
|
|
274
|
+ </view>
|
|
275
|
+
|
|
276
|
+ {/* --------无线网-------- */}
|
|
277
|
+ <view className='room-box-info-WIFIContent'>
|
|
278
|
+ <view className='room-bi-name-WIFIContent' >
|
|
279
|
+ <view className='room-bin-title-WIFIContent'>WiFi信息</view>
|
|
280
|
+ <view className='room-bint-nameInfo-WIFIContent'>
|
|
281
|
+ <view className='room-bint-nameInfo-bool-WIFIContent-wifi' >名称:{taRoomContent?.wifiName}</view>
|
|
282
|
+ <view className='room-bint-nameInfo-bool-WIFIContent-password' >密码:{taRoomContent?.wifiPassword}</view>
|
|
283
|
+ <view className='room-bintn-button-WIFIContent' onClick={() => { wifiCopy() }} style={{ display: wifiButtonStyle }}>
|
|
284
|
+ <image className='room-bintn-image-WIFIContent' src={copy_logo} />
|
|
285
|
+ <text className='room-bintn-text-WIFIContent'>复制</text>
|
|
286
|
+ </view>
|
|
287
|
+ </view>
|
|
288
|
+ </view>
|
235
|
289
|
</view>
|
236
|
290
|
|
237
|
291
|
<view className='Guide-Content-box' >
|