You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
674 B
15 lines
674 B
<view class="tabs">
|
|
<view class="tab" wx:for="{{tabs}}" wx:key="*this" id="{{index}}" bindtap="handleTap">
|
|
<view class="btn {{index===tab?'active':''}}">{{item}}</view>
|
|
</view>
|
|
</view>
|
|
<image src="./relocate.png" class="relocate {{tab===0?'high':''}}" bindtap="handleRelocate">
|
|
</image>
|
|
<image wx:if="{{tab===1}}" src="./tomap.png" class="tomap" bindtap="handleToMap">
|
|
</image>
|
|
<view class="floor {{tab===0?'high':''}}">
|
|
当前楼层 <view class="sep"></view>
|
|
<view class="value">{{floor}}</view>
|
|
</view>
|
|
<image class="tomob {{tab===0?'high':''}}" src="./tomob.png" bindtap="handleToMob"></image>
|
|
<image class="tip {{tab===0?'high':''}}" src="./tip.png"></image>
|