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.
23 lines
641 B
23 lines
641 B
<!--pages/history/history.wxml-->
|
|
<view class="navs">
|
|
|
|
<view class="nav">
|
|
<view bindtap="navclick"data-index="0"class="{{index==0?'active':''}}">发展历程</view>
|
|
</view>
|
|
|
|
<view class="nav">
|
|
<view bindtap="navclick"data-index="1"class="{{index==1?'active':''}}">杰出成就</view>
|
|
</view>
|
|
<view class="nav">
|
|
<view bindtap="navclick"data-index="2"class="{{index==2?'active':''}}">著名学者</view>
|
|
</view>
|
|
|
|
<view class="bottom"></view>
|
|
<view class="container"></view>
|
|
</view>
|
|
<view class="{{cname}}" bindtap="clselect"></view>
|
|
<block wx:for="{{pros}}">
|
|
<view class="opart">
|
|
<image src="{{item.url}}"></image>
|
|
</view>
|
|
</block> |