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.
14 lines
780 B
14 lines
780 B
<wxs module="index" src="./index.wxs"></wxs>
|
|
|
|
<!-- <main id="main" style="display:{{pageIndex == 0 ? 'block' : 'none'}}"/> -->
|
|
<order id="order" style="display:{{pageIndex == 0 ? 'block' : 'none'}}"/>
|
|
<home id="home" style="display:{{pageIndex == 1 ? 'block' : 'none'}}"/>
|
|
|
|
<view class="cu-bar tabbar bg-white shadow foot" style="height:{{100 + safeBottom}}rpx;padding-bottom:{{safeBottom}}rpx">
|
|
<view wx:for="{{TabList}}" wx:key="index" class="action" bindtap="onNavChange" data-tab="{{item.index}}">
|
|
<view class="cuIcon-cu-image">
|
|
<image style="width:44rpx;height:44rpx" mode="aspectFill" src="{{index.tabImage(pageIndex, item.index)}}"></image>
|
|
</view>
|
|
<view class="{{pageIndex == item.index?'text-blue':'text-gray'}}">{{item.name}}</view>
|
|
</view>
|
|
</view>
|