美文网首页工作总结
微信小程序:底部导航组件封装

微信小程序:底部导航组件封装

作者: 轩轩小王子 | 来源:发表于2019-02-14 11:25 被阅读0次

1.底部导航

<!-- 底部导航 -->
<view class='tab-bar-p-container'>
  <view wx:if='{{isAuth}}' class='tab-bar-p'>
    <view class='common-style' bindtap='checkCurrentPage' data-tag='1'>
      <image src='{{currentTag == 1 ? "/image/tab_home_selected@2x.png" : "/image/tab_home_normal@2x.png"}}'></image>
      <view class='{{currentTag == 1 ? "selected" : ""}}'>首页</view>
    </view>
    <view class='common-style' bindtap='checkCurrentPage' data-tag='2'>
      <image src='{{currentTag == 2 ? "/image/tab_activity_selected@2x.png" : "/image/tab_activity_normal@2x.png"}}'></image>
      <view class='{{currentTag == 2 ? "selected" : ""}}'>我的活动</view>
    </view>
    <view class='common-style' bindtap='checkCurrentPage' data-tag='3'>
      <image src='{{currentTag == 3 ? "/image/tab_personal_selected@2x.png" : "/image/tab_personal_normal@2x.png"}}'></image>
      <view class='{{currentTag == 3 ? "selected" : ""}}'>个人中心</view>
    </view>
  </view>

<view wx:else class='tab-bar-p'>
    <button class='btn-only-function common-style enterprise-shopping-p' open-type="getUserInfo" bindgetuserinfo="systemGetUserInfo">
      <image src='{{currentTag == 1 ? "/image/tab_home_selected@2x.png" : "/image/tab_home_normal@2x.png"}}'></image>
      <view class='{{currentTag == 1 ? "selected" : ""}}'>首页</view>
    </button>
    <button class='btn-only-function common-style personal-center-p' open-type="getUserInfo" bindgetuserinfo="systemGetUserInfo">
      <image src='{{currentTag == 2 ? "/image/tab_activity_selected@2x.png" : "/image/tab_activity_normal@2x.png"}}'></image>
      <view class='{{currentTag == 2 ? "selected" : ""}}'>我的活动</view>
    </button>
    <button class='btn-only-function common-style personal-center-p' open-type="getUserInfo" bindgetuserinfo="systemGetUserInfo">
      <image src='{{currentTag == 3 ? "/image/tab_personal_selected@2x.png" : "/image/tab_personal_normal@2x.png"}}'></image>
      <view class='{{currentTag == 3 ? "selected" : ""}}'>个人中心</view>
    </button>
  </view>

附图片:

image.png

相关文章

网友评论

    本文标题:微信小程序:底部导航组件封装

    本文链接:https://www.haomeiwen.com/subject/tfwajqtx.html