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.
27 lines
1.3 KiB
27 lines
1.3 KiB
<!-- 买车 -->
|
|
<buycar wx:if="{{current==1}}" bindbindshare="bindshare"></buycar>
|
|
<!-- 我的 -->
|
|
<me wx:if="{{current==2}}"></me>
|
|
<!-- 自定义菜单 -->
|
|
<view class="nav-tabs">
|
|
<view class="tab-list default" bindtap="swichNav" data-current="1">
|
|
<text class="tab-text" wx:if="{{current==1}}" style="color: #3476fe;">买车</text>
|
|
<text class="tab-text" wx:if="{{current!=1}}">买车</text>
|
|
<image class="iconPath" wx:if="{{current==1}}" src="/images/tabbar/home_select.png"></image>
|
|
<image class="iconPath" wx:if="{{current!=1}}" src="/images/tabbar/home.png">
|
|
</image>
|
|
</view>
|
|
<view class="tab-list default" bindtap="go_new_show">
|
|
<image class="iconPath2" src="/images/tabbar/publish_select.png">
|
|
</image>
|
|
</view>
|
|
<view class="tab-list default" bindtap="swichNav" data-current="2">
|
|
<text class="tab-text" wx:if="{{current==2}}" style="color: #3476fe;">我的</text>
|
|
<text class="tab-text" wx:if="{{current!=2}}" >我的</text>
|
|
<image class="iconPath" wx:if="{{current==2}}" src="/images/tabbar/me_select.png"></image>
|
|
<image class="iconPath" wx:if="{{current!=2}}" src="/images/tabbar/me.png">
|
|
</image>
|
|
</view>
|
|
</view>
|
|
<!-- 转发 -->
|
|
<share is_show_share_mask='{{is_show_share_mask}}' share_detail='{{ detail }}' bind:hide_share_mask_fn="hide_share_mask_fn" />
|