2023-04-17 16:14:18 +08:00

13 lines
688 B
Plaintext

<view class='irent-tab-box tab-box'>
<view class="{{ page=='personList'? 'tab active' :'tab'}}" data-page="personList" bindtap="toPage">
<view class="text">个人房源</view>
</view>
<view class="{{ page=='quarantineLists'? 'tab active' :'tab'}}" wx:if="{{ listTab.quarantineLists }}" data-page="quarantineLists" bindtap="toPage">
<view class="text">{{ listTab.quarantineLists }}</view>
</view>
<view class="{{ page=='irentList'? 'tab active' :'tab'}}" data-page="irentList" bindtap="toPage">
<view class="text">学生公寓</view>
<image src="/img/new.png" wx:if="{{ StudentapartmentNew }}" class='new'></image>
</view>
</view>