<!--pages/bookExhibitionDetails/index.wxml-->
|
|
|
<view class="headBox">
|
<text class="titleBox">{{bookName}}</text>
|
<view class="informationBox">
|
<text class="informationNameBox">发布人:{{bookCreator}}</text>
|
<text class="informationTimeBox">发布日期:{{bookBeginDate}}</text>
|
|
</view>
|
</view>
|
|
|
|
<image class="partingBox" src="/static/images/bookExhibitionDetails/Parting.png" mode="" />
|
|
<image class="bannerBox" src="{{bookImage}}" mode="" />
|
|
<view class="textContent">
|
<rich-text nodes="{{bookContent}}"></rich-text>
|
|
<!-- <text>{{bookContent}}</text> -->
|
</view>
|
<view class="outsideBooksBox">
|
<view class="booksBox" wx:for="{{bookExhibitionList}}" wx:key="index" wx:for-item="item" wx:for-index="index" data-item="{{item}}" bind:tap="onBookDetails">
|
<view class="outsideBooksImageBox">
|
<image class="booksImageBox" src="{{item.icon}}" mode="" />
|
</view>
|
<view class="booksTextBox"> <text>{{item.name}}</text></view>
|
|
</view>
|
</view>
|