|
@@ -0,0 +1,25 @@
|
|
|
+<view class="tabbar" style="padding-bottom: {{safeAreaBot}}rpx;">
|
|
|
+ <navigator url="#" class="item" wx:for="{{list}}" wx:key="index" data-item="{{item}}" bindtap="callback">
|
|
|
+ <view class="icon" wx:if="{{item.icon}}">
|
|
|
+ <text class="iconfont {{item.icon}}" />
|
|
|
+ </view>
|
|
|
+ <view wx:else class="num line-1">{{item.num}}</view>
|
|
|
+ <view class="label line-1">{{item.label}}</view>
|
|
|
+ </navigator>
|
|
|
+</view>
|
|
|
+<view style="height: 98rpx;" style="padding-bottom: {{safeAreaBot}}rpx;" />
|
|
|
+
|
|
|
+<van-popup show="{{ show }}" position="bottom" bind:close="onClose">
|
|
|
+ <view class="title">
|
|
|
+ 更多功能
|
|
|
+ </view>
|
|
|
+ <swiper indicator-dots style="height: 354rpx;">
|
|
|
+ <swiper-item>
|
|
|
+ <navigator url="#" class="swiper-item" wx:for="{{10}}" bindtap="onClose"></navigator>
|
|
|
+ </swiper-item>
|
|
|
+ <swiper-item>
|
|
|
+ <navigator url="#" class="swiper-item" wx:for="{{3}}" bindtap="onClose"></navigator>
|
|
|
+ </swiper-item>
|
|
|
+ </swiper>
|
|
|
+ <view class="tabbar" />
|
|
|
+</van-popup>
|