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.
18 lines
801 B
18 lines
801 B
<!--pages/pbService/library/mybook/index.wxml-->
|
|
<title title="我的借阅"></title>
|
|
<view class="info-top" wx:for="{{list}}">
|
|
<view class="img-box">
|
|
<image src="{{item.bookjpgs}}" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="info">
|
|
<view class="title">{{item.title}}</view>
|
|
<view class="subtitle" style="margin-bottom:10rpx">作者:{{item.author}}</view>
|
|
<view class="subtitle">借阅时间:{{item.loandate}}</view>
|
|
<view class="subtitle">到期时间:{{item.returndate}}</view>
|
|
<view class="subtitle" style="color:#0B898E">{{item.statusText}}</view>
|
|
<view class="btns">
|
|
<view class="btn" bindtap="cancel" data-item="{{item}}">取消借阅</view>
|
|
<view class="btn" bindtap="add" data-item="{{item}}">续借</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|