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.
18 lines
887 B
18 lines
887 B
<!--pages/administ/index.wxml-->
|
|
<swiper current="{{tabIndex}}" duration="0" style="height:{{fragment}}rpx">
|
|
<swiper-item catchtouchmove="stopTouchMove"><message id="{{tabList[0].value}}"/></swiper-item>
|
|
<swiper-item catchtouchmove="stopTouchMove"><workbench id="{{tabList[1].value}}"/></swiper-item>
|
|
<swiper-item catchtouchmove="stopTouchMove"><home id="{{tabList[2].value}}"/></swiper-item>
|
|
</swiper>
|
|
|
|
<view class="bg-white foot" style="height:{{100 + safeBottom}}rpx;padding-bottom:{{safeBottom}}rpx">
|
|
<van-tabbar active="{{ tabIndex }}" fixed="{{false}}" bind:change="onChange">
|
|
<van-tabbar-item wx:for="{{tabList}}" wx:key="index" >
|
|
<van-icon slot="icon" name="{{item.gray}}" size="25"/>
|
|
<van-icon slot="icon-active" name="{{item.blue}}" size="25"/>
|
|
<text>{{item.name}}</text>
|
|
</van-tabbar-item>
|
|
</van-tabbar>
|
|
</view>
|
|
|
|
<van-dialog id="van-dialog" />
|