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.
34 lines
922 B
34 lines
922 B
<!--pages/cate/cate.wxml-->
|
|
<!--pages/category/category.wxml-->
|
|
<!-- 头部 -->
|
|
<view class="head">
|
|
<view class="icon-box">
|
|
<view class="icon-small-wrp">
|
|
<icon class="icon-small" type="search" size="45"></icon>
|
|
<input type="text" placeholder="点击搜索相关知识" />
|
|
</view></view>
|
|
</view>
|
|
|
|
<!-- 底部 -->
|
|
<view class="bottom">
|
|
|
|
<!-- 导航 -->
|
|
<view class="left">
|
|
<view bindtap="navlick" data-index="0" class="{{index==0?'active':''}}">数学工具</view>
|
|
<view bindtap="navlick" data-index="1" class="{{index==1?'active':''}}">数学著作</view>
|
|
|
|
</view>
|
|
<!-- 内容 -->
|
|
<view class="right">
|
|
<scroll-view scroll-y>
|
|
<view class="pros">
|
|
<block wx:for="{{pros}}" wx:key="index">
|
|
<view class="pro">
|
|
<image src="{{item.url}}" mode=""/>
|
|
<text>{{item.name}} </text>
|
|
</view>
|
|
</block>
|
|
</view>
|
|
</scroll-view>
|
|
</view>
|
|
</view> |