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
501 B
14 lines
501 B
5 years ago
|
<view class="navigation">
|
||
|
<view style="height:{{statusBarHeight}}px"></view>
|
||
|
<view class="navigation-bar">
|
||
|
<view class="navigation-left">
|
||
|
<icon wx:if="{{showSearch}}" class="search" type="search" size="25" color="white" bindtap="enterSearch" />
|
||
|
<text class="title">{{title}}</text>
|
||
|
</view>
|
||
|
<view class="navbar" bindtap="switchNav">
|
||
|
<view class="navitem {{current==index?'active':''}}" wx:for="{{list}}" data-current="{{index}}">
|
||
|
{{item.text}}
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|