123456789101112131415161718192021222324252627282930313233343536 |
- <view class="tabbar">
- <block wx:for="{{list}}" wx:key="index">
- <view class="tabbar-item" bindtap="switchTab" data-path="{{item.pagePath}}" data-index="{{index}}">
- <image class="icon" src="{{selected === index ? item.selectedIconPath : item.iconPath}}" mode="aspectFit" />
- <view class="{{selected === index ? 'active' : ''}}">{{item.text}}</view>
- </view>
- </block>
- </view>
- <!-- 分享弹框 -->
- <van-popup
- show="{{ showShare }}"
- position="bottom"
- round
- z-index="9999"
- >
- <view class="share-container">
- <view class="share-options">
- <!-- <view class="share-item" bindtap="shareToWechat">
- <image class="share-icon" src="/static/tabbar/weixin.png" mode="aspectFit" />
- <text class="share-text">微信好友</text>
- </view> -->
- <button class="share-item" open-type="share">
- <image class="share-icon" src="/static/tabbar/weixin.png" mode="aspectFit" />
- <text class="share-text">微信好友</text>
- </button>
- <!-- <button class="share-item" open-type="share" data-type="timeline">
- <image class="share-icon" src="/static/tabbar/tp.png" mode="aspectFit" />
- <text class="share-text">朋友圈</text>
- </button> -->
- </view>
- <!-- 取消按钮 -->
- <view class="share-cancel" bindtap="onCloseShare" hover-class="btn-hover" hover-start-time="50">
- <image class="share-cancel-img" src="/static/tabbar/cancel.png" mode="aspectFit"/>
- </view>
- </view>
- </van-popup>
|