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.
|
|
|
|
<!--pages/pbService/library/bookinfo/index.wxml-->
|
|
|
|
|
<title title="图书详情"></title>
|
|
|
|
|
<view wx:if="{{info}}">
|
|
|
|
|
<view class="info-top">
|
|
|
|
|
<view class="img-box">
|
|
|
|
|
<image lazy-load src="{{info.bookjpgs}}" mode="aspectFill"></image>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="info">
|
|
|
|
|
<view class="title">{{info.title}}</view>
|
|
|
|
|
<view class="subtitle">作者:{{info.author}}</view>
|
|
|
|
|
<view class="subtitle">出版社:{{info.publisher}}</view>
|
|
|
|
|
<view class="subtitle">出版时间:{{info.pubdate}}</view>
|
|
|
|
|
<view class="subtitle">ISBN:{{info.isbn}}</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="content">
|
|
|
|
|
<view class="title">简介</view>
|
|
|
|
|
<view>{{info.summary}}</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view style="height:130rpx"></view>
|
|
|
|
|
<view class="btn" bindtap="getBook">点击借阅</view>
|