32 lines
1.3 KiB
Plaintext
32 lines
1.3 KiB
Plaintext
<!-- component/TabBar/TabBar.wxml -->
|
|
<!-- tabbar -->
|
|
<view class="TabBar">
|
|
<view class="cu-bar tabbar bg-white">
|
|
<view data-index="1" bind:tap="tabSwitch" class="action {{index == 1?'text-green':'text-gray'}}">
|
|
<view class="cuIcon-homefill"></view>
|
|
首页
|
|
</view>
|
|
<view data-index="2" bind:tap="tabSwitch" class="action {{index == 2?'text-green':'text-gray'}}">
|
|
<view class="cuIcon-similar"></view>
|
|
价目表
|
|
</view>
|
|
<view data-index="3" bind:tap="tabSwitch" class="action {{index == 3?'text-green':'text-gray'}} add-action">
|
|
<view class="live">
|
|
<view class="my-icno">
|
|
<image src="/static/img/icon/asdferfhrthjtr.png" />
|
|
</view>
|
|
<span></span>
|
|
<span></span>
|
|
</view>
|
|
一键下单
|
|
</view>
|
|
<view data-index="4" bind:tap="tabSwitch" class="action {{index == 4?'text-green':'text-gray'}}">
|
|
<view class="cuIcon-cart"></view>
|
|
商城
|
|
</view>
|
|
<view data-index="5" bind:tap="tabSwitch" class="action {{index == 5?'text-green':'text-gray'}}">
|
|
<view class="cuIcon-my"></view>
|
|
我的
|
|
</view>
|
|
</view>
|
|
</view> |