|
@@ -34,7 +34,6 @@ export default withLayout((props) => {
|
34
|
34
|
|
35
|
35
|
const onRoomMap = () => {
|
36
|
36
|
Taro.chooseLocation().then((res) => {
|
37
|
|
- console.log("🚀 ~ file: addRoom.jsx ~ line 37 ~ Taro.chooseLocation ~ res", res)
|
38
|
37
|
setRoomModel({ ...roomModel, location: res.longitude + ',' + res.latitude, locName: res.name, address: res.address })
|
39
|
38
|
})
|
40
|
39
|
}
|
|
@@ -175,7 +174,7 @@ export default withLayout((props) => {
|
175
|
174
|
<CustomNav title={hotelName} />
|
176
|
175
|
</view>
|
177
|
176
|
<view className='roomDetail' style={{ height: '100%', overflow: "hidden", }} >
|
178
|
|
- <scroll-view scrollY style={{ height: '87%' }}>
|
|
177
|
+ <scroll-view scrollY style={{ height: '100%' }}>
|
179
|
178
|
<View id='det'>
|
180
|
179
|
<Popup show={showCutover} onClose={onClose}>
|
181
|
180
|
<View className='editword'>
|
|
@@ -238,17 +237,15 @@ export default withLayout((props) => {
|
238
|
237
|
</mp-cell>
|
239
|
238
|
</mp-cells>
|
240
|
239
|
{roomId ? <>
|
241
|
|
- <view>
|
242
|
240
|
<view className='weui-cells__title'>其他指引</view>
|
243
|
241
|
{
|
244
|
242
|
extend == '' ? null :
|
245
|
|
- <view>
|
|
243
|
+ <>
|
246
|
244
|
{extend.map((item) => (
|
247
|
245
|
<Extend key={item.extId} item={item} setReset={setReset} />
|
248
|
246
|
))}
|
249
|
|
- </view>
|
|
247
|
+ </>
|
250
|
248
|
}
|
251
|
|
- </view>
|
252
|
249
|
</> : null
|
253
|
250
|
}
|
254
|
251
|
</mp-form>
|