|
@@ -173,8 +173,8 @@ export default withLayout((props) => {
|
173
|
173
|
<view className='index-navbar'>
|
174
|
174
|
<CustomNav title={hotelName} />
|
175
|
175
|
</view>
|
176
|
|
- <view className='roomDetail' style={{ height: '100%', overflow: "hidden", }} >
|
177
|
|
- <scroll-view scrollY style={{ height: '100%' }}>
|
|
176
|
+ <view className='roomDetail' style={{ height: '100%', display: 'flex', flexDirection: 'column', overflow: 'hidden' }} >
|
|
177
|
+ <scroll-view scrollY style={{ height: '100%', position: 'relative', overflow: "hidden", flex: 'auto' }}>
|
178
|
178
|
<View id='det'>
|
179
|
179
|
<Popup show={showCutover} onClose={onClose}>
|
180
|
180
|
<View className='editword'>
|
|
@@ -237,15 +237,15 @@ export default withLayout((props) => {
|
237
|
237
|
</mp-cell>
|
238
|
238
|
</mp-cells>
|
239
|
239
|
{roomId ? <>
|
240
|
|
- <view className='weui-cells__title'>其他指引</view>
|
241
|
|
- {
|
242
|
|
- extend == '' ? null :
|
243
|
|
- <>
|
244
|
|
- {extend.map((item) => (
|
245
|
|
- <Extend key={item.extId} item={item} setReset={setReset} />
|
246
|
|
- ))}
|
247
|
|
- </>
|
248
|
|
- }
|
|
240
|
+ <view className='weui-cells__title'>其他指引</view>
|
|
241
|
+ {
|
|
242
|
+ extend == '' ? null :
|
|
243
|
+ <>
|
|
244
|
+ {extend.map((item) => (
|
|
245
|
+ <Extend key={item.extId} item={item} setReset={setReset} />
|
|
246
|
+ ))}
|
|
247
|
+ </>
|
|
248
|
+ }
|
249
|
249
|
</> : null
|
250
|
250
|
}
|
251
|
251
|
</mp-form>
|
|
@@ -260,8 +260,8 @@ export default withLayout((props) => {
|
260
|
260
|
</View>
|
261
|
261
|
</> : null
|
262
|
262
|
}
|
263
|
|
- <Button className='button-OK' onClick={sumbit}>确定</Button>
|
264
|
263
|
</scroll-view>
|
|
264
|
+ <Button className='button-OK' onClick={sumbit}>确定</Button>
|
265
|
265
|
</view>
|
266
|
266
|
</view>
|
267
|
267
|
)
|