1234567891011121314151617181920212223242526272829 |
- <view class="foot">
- <van-tabbar active="{{ active }}" bind:change="tabPath">
- <van-tabbar-item>
- <image slot="icon" src="{{ one.normal }}" mode="aspectFit" style="width: 24px; height: 26px;" />
- <image slot="icon-active" src="{{ one.active }}" mode="aspectFit" style="width: 24px; height: 26px;" />
- 首页
- </van-tabbar-item>
- <van-tabbar-item>
- <image slot="icon" src="{{ two.normal }}" mode="aspectFit" style="width: 24px; height: 26px;" />
- <image slot="icon-active" src="{{ two.active }}" mode="aspectFit" style="width: 24px; height: 26px;" />
- 查询比赛
- </van-tabbar-item>
- <van-tabbar-item>
- <image slot="icon" src="{{ three.normal }}" mode="aspectFit" style="width: 24px; height: 26px;" />
- <image slot="icon-active" src="{{ three.active }}" mode="aspectFit" style="width: 24px; height: 26px;" />
- 比赛管理
- </van-tabbar-item>
- <van-tabbar-item>
- <image slot="icon" src="{{ four.normal }}" mode="aspectFit" style="width: 24px; height: 26px;" />
- <image slot="icon-active" src="{{ four.active }}" mode="aspectFit" style="width: 24px; height: 26px;" />
- 查找团队
- </van-tabbar-item>
- <van-tabbar-item>
- <image slot="icon" src="{{ five.normal }}" mode="aspectFit" style="width: 24px; height: 26px;" />
- <image slot="icon-active" src="{{ five.active }}" mode="aspectFit" style="width: 24px; height: 26px;" />
- 我的
- </van-tabbar-item>
- </van-tabbar>
- </view>
|