1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <!--president/pages/book_Imformation/book_Imformation.wxml-->
- <import src="../../../templates/nodata/nodata.wxml" />
- <import src="../../../templates/footer/footer.wxml" />
- <import src="../../../templates/loading/loading.wxml" />
- <view class='container'>
- <template is='loading' wx:if='{{!isLoaded}}'></template>
- <view class='wrapper pb' wx:else>
- <view class='items'>
- <view class='item' bindtap='showItemCtl'>
- <view class='item-img'>
- <image class='book-image-item' mode='aspectFill' src='{{bookImg ? baseImgUrl + bookImg+thumbnail: "../../../assets/default_headicon.png"}}' data-images='{{([bookImg])}}' data-baseurl='{{baseImgUrl}}' bindtap='viewImage'></image>
- </view>
- <view class='item-textInfo'>
- <view class="item-textword">
- {{title}}
- </view>
- <view class="items-modal-Tips">
- <view wx:if='{{theme}}' class='items-modal-Select'>{{theme}}</view>
- <view wx:if='{{grade}}' class='items-modal-textInfo'>推荐{{grade}}阅读</view>
- </view>
- <view class='book-text'>
- <image src='../../../assets/fire.png' class='book-icon-two' wx:for='{{heat}}' wx:key='index'></image>
- </view>
- </view>
- </view>
- </view>
- <view class='item-content' wx:if='{{summary}}'>
- <view class="recommended">
- <image class='recommended-icon' src='../../../assets/bgIcon.png'></image>
- <text class='recommended-text'>推荐</text>
- </view>
- <view class="item-content-textword">
- {{summary}}
- </view>
- </view>
- <view class='same' wx:if='{{sameList.length>0}}'>
- <view class='same-title'>同类书籍</view>
- <view class='ul' wx:for='{{sameList}}' wx:key='index'>
- <view class='ui-image'>
- <image mode='aspectFill' src='{{item.local_image ? baseImgUrl + item.local_image + thumbnail : "../../../assets/default_headicon.png"}}' data-images='{{([item.local_image])}}' data-baseurl='{{baseImgUrl}}' bindtap='viewImage' class='li-img'></image>
- </view>
- <view class='li-right'>
- <view data-url='president/pages/book_Imformation/book_Imformation' data-paras='{{({bookInfoId: item.book_info_id})}}' bindtap='navigateTo'>
- <view wx:if='{{item.title}}'>{{item.title}}</view>
- <view class='li-right-tips' wx:if='{{item.theme}}'>
- <view class='li-right-tips-items'>{{item.theme}}</view>
- </view>
- <view>
- <image src='../../../assets/fire.png' class='li-right-grade' wx:for='{{item.heat}}' wx:key='index'></image>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class='fold' wx:if='{{isFold==1}}' bindtap='addFold'>调入</view>
- <!-- <template is='footer' data='{{...footerData}}'></template> -->
- </view>
|