|
@@ -59,57 +59,7 @@ export default (props) => {
|
59
|
59
|
<Button className='cancel' onClick={onClose}>取消</Button>
|
60
|
60
|
<Button className='btn' onClick={handelShare}>分享</Button>
|
61
|
61
|
</View>
|
62
|
|
-
|
63
|
|
-
|
64
|
|
-
|
65
|
|
-
|
66
|
|
- {/* <mp-form >
|
67
|
|
- <Label style={{color:'black'}}>请输入入住人信息</Label>
|
68
|
|
- <mp-cells footer=' ' >
|
69
|
|
- <mp-cell title='入住人数:' extClass='font'>
|
70
|
|
- <Input focus dataField='nm' onInput={(e) => setRoomNum(e.detail.value)} value={roomNum} type='number' placeholder='请输入入住人数' />
|
71
|
|
- </mp-cell>
|
72
|
|
- <mp-cell title='入住开始时间:' extClass='font'>
|
73
|
|
- <Picker mode='date' onChange={handelStartDate}>
|
74
|
|
- {startDate == '' ? '请选择入住开始时间' : startDate}
|
75
|
|
- </Picker>
|
76
|
|
- </mp-cell>
|
77
|
|
- <mp-cell title='入住结束时间:' extClass='font'>
|
78
|
|
- <Picker mode='date' onChange={handelEndDate}>
|
79
|
|
- {endDate == '' ? '请选择入住结束时间' : endDate}
|
80
|
|
- </Picker>
|
81
|
|
- </mp-cell>
|
82
|
|
- <mp-cell>
|
83
|
|
- <Button className='cancel' onClick={onClose}>取消</Button><Button className='btn' onClick={handelShare}>分享</Button>
|
84
|
|
- </mp-cell>
|
85
|
|
- </mp-cells>
|
86
|
|
- </mp-form> */}
|
87
|
62
|
</View>
|
88
|
|
-
|
89
|
|
-
|
90
|
|
-
|
91
|
|
-
|
92
|
|
-
|
93
|
|
-
|
94
|
|
-
|
95
|
|
- {/* <View className='from-room'>
|
96
|
|
- <Label style={{ color: 'black' }}>请输入入住人信息</Label>
|
97
|
|
- <View className='flex'>
|
98
|
|
- <Label>入住人数:</Label><Input focus dataField='nm' onInput={(e) => setRoomNum(e.detail.value)} value={roomNum} type='number' placeholder='请输入入住人数' /></View>
|
99
|
|
- <View className='flex'>
|
100
|
|
- <Label>入住开始时间:</Label>
|
101
|
|
- <Picker mode='date' className='picker' onChange={handelStartDate}>
|
102
|
|
- {startDate == '' ? '请选择入住开始时间' : startDate}
|
103
|
|
- </Picker>
|
104
|
|
- </View>
|
105
|
|
- <View className='flex'>
|
106
|
|
- <Label>入住结束时间:</Label>
|
107
|
|
- <Picker className='picker' mode='date' onChange={handelEndDate}>
|
108
|
|
- {endDate == '' ? '请选择入住结束时间' : endDate}
|
109
|
|
- </Picker>
|
110
|
|
- </View>
|
111
|
|
- <View><Button className='cancel' onClick={onClose}>取消</Button><Button className='btn' onClick={handelShare}>分享</Button></View>
|
112
|
|
- </View> */}
|
113
|
63
|
</Popup>
|
114
|
64
|
)
|
115
|
65
|
}
|