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.
 

27 lines
1.2 KiB

<!--pages/pbService/library/index.wxml-->
<title title="书香借阅"></title>
<view class="top-menus">
<view class="search-top">
<view class="iconfont icon-sousuo"></view>
<input type="text" bindinput="changeKeyword" placeholder="请输入书名/作者"></input>
<view class="search-btn" bindtap="search">搜索</view>
</view>
<view class="menus">
<view class="menu{{type==1?' active':''}}" bindtap="changeType" data-type='1'>新书上架</view>
<view class="menu{{type==2?' active':''}}" bindtap="changeType" data-type='2'>好书推荐</view>
</view>
</view>
<view style="height:180rpx"></view>
<view class="list">
<view bindtap="gotoInfo" data-item="{{item}}" class="item" wx:for="{{list}}">
<image lazy-load src="{{item.bookjpgs}}" mode="aspectFill"></image>
<view class="info">
<view class="title textOver">{{item.title}}</view>
<view class="subtitle textOver">{{item.author}}</view>
</view>
</view>
</view>
<view class="right-icons">
<navigator url="mybook/index" class="right-icon" style="margin-bottom:20rpx">当前借阅</navigator>
<navigator url="getpoint/index" class="right-icon">取书地点</navigator>
</view>