| | |
| | | bind:tap="openDialog" |
| | | style="width: 240rpx" |
| | | > |
| | | <view slot="content"> |
| | | <view slot="content" class="btn-content"> |
| | | <image src="/static/images/bookService/detail/makeNote.png" /> |
| | | 记笔记 |
| | | <text class="note-btn-text">记笔记</text> |
| | | </view> |
| | | </t-button> |
| | | </view> |
| | |
| | | bind:change="handleChange" |
| | | wx:if="{{!loading && noteList.length}}" |
| | | > |
| | | <t-collapse-panel value="{{item.id}}" expandIcon wx:for="{{noteList}}"> |
| | | <t-collapse-panel |
| | | value="{{item.id}}" |
| | | expandIcon |
| | | wx:for="{{noteList}}" |
| | | wx:key="id" |
| | | > |
| | | <view slot="header" class="collapse-header"> |
| | | <t-image |
| | | class="note-icon" |
| | |
| | | <t-empty icon="folder-open" description="暂无数据" /> |
| | | </view> |
| | | </view> |
| | | <view class="bottom-box"> |
| | | <view class="bottom-box" wx:if="{{noteList.length}}"> |
| | | <t-loading wx:if="{{isMore == true}}"></t-loading> |
| | | <text wx:if="{{isMore == false}}">没有更多了</text> |
| | | </view> |
| | | </view> |
| | | <view class="loading-box" wx:if="{{loading}}"> |
| | | <t-loading loading="{{loading}}" size="60rpx"></t-loading> |
| | | <t-skeleton |
| | | row-col="{{[1,1,1,1,1,1]}}" |
| | | theme="paragraph" |
| | | animation="gradient" |
| | | loading="{{loading}}" |
| | | ></t-skeleton> |
| | | </view> |
| | | |
| | | <!-- 记笔记弹窗 --> |