|
@@ -68,14 +68,6 @@ export default withLayout((props) => {
|
68
|
68
|
{hotel?.hotelId ? currentTab === 0 && <HouseManage hotelList={hotelList} hotel={hotel} onHotelChange={handleHotelChange} ref={houseRef} disabled={!hotel.hotelId} /> : <NoData />}
|
69
|
69
|
</view>
|
70
|
70
|
<view className='index-tabbar'>
|
71
|
|
- {/* <TabBar extClass='custom-tabbar bottomTab' current={currentTab} onChange={handleTabChange}>
|
72
|
|
- <view className={`${currentTab === 0 ? 'houseTab' : ''}`}>
|
73
|
|
- <image className='house' src={currentTab === 0 ? onhouseImg : houseImg} /><text>房源管理</text>
|
74
|
|
- </view>
|
75
|
|
- <view className={`${currentTab === 1 ? 'incomeTab' : ''}`}>
|
76
|
|
- <image className='incomes' src={currentTab === 1 ? onincomeImg : incomeImg} /><text>我的收入</text>
|
77
|
|
- </view>
|
78
|
|
- </TabBar> */}
|
79
|
71
|
</view>
|
80
|
72
|
<view className='index-tabbar'>
|
81
|
73
|
<mp-tabbar extClass='custom-tabbar' current={currentTab} list={tabList} onChange={handleTabChange}></mp-tabbar>
|