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.
16 lines
586 B
16 lines
586 B
<!--components/segment/index.wxml-->
|
|
<view class="main">
|
|
<scroll-view scroll-x scroll-into-view=''>
|
|
<view class="header-titles">
|
|
<block wx:for="{{headerTitles}}" wx:key="index" >
|
|
<view class="item-title">
|
|
<view id="{{index}}" bindtap="bindtap" data-item="{{item}}" data-index="{{index}}" class="title {{index==selectedTitle ? 'title-selected' : ''}}">
|
|
{{item}}
|
|
</view>
|
|
<view class="select-line {{index==selectedTitle ? 'select-line-active': ''}}"></view>
|
|
</view>
|
|
</block>
|
|
</view>
|
|
</scroll-view>
|
|
</view>
|
|
|
|
|