市北人才赋能平台 --小程序端
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.

21 lines
739 B

6 years ago
<!--pages/topics/index.wxml-->
6 years ago
<view class="mian">
<view class="content-wrapper">
<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" class="title {{index==selectedTitle ? 'title-selected' : ''}}">
{{item}}
</view>
<view class="select-line" hidden="{{index==selectedTitle ? false : true}}"></view>
</view>
</block>
</view>
</scroll-view>
<interactive wx:if="{{selectedTitle==0}}" />
<goodIdea wx:if="{{selectedTitle==1}}" />
<message wx:if="{{selectedTitle==2}}" />
</view>
</view>