| | |
| | | <!--pages/bookServices/detail/components/note/note.wxml--> |
| | | <view class="note" wx:if="{{!loading && noteList.length}}"> |
| | | <view class="note"> |
| | | <view class="note-btn"> |
| | | <t-button theme="primary" class="make-note" bind:tap="openDialog" style="width: 240rpx;"> |
| | | <view slot="content"> |
| | |
| | | </view> |
| | | <view class="note-content"> |
| | | |
| | | <t-collapse value="{{activeValues}}" bind:change="handleChange"> |
| | | <t-collapse value="{{activeValues}}" bind:change="handleChange" wx:if="{{!loading && noteList.length}}"> |
| | | <t-collapse-panel value="{{item.id}}" expandIcon wx:for="{{noteList}}"> |
| | | <view slot="header" class="collapse-header"> |
| | | <t-image class="note-icon" src="/static/images/bookService/detail/note-icon.png"></t-image> |
| | |
| | | </view> |
| | | </t-collapse-panel> |
| | | </t-collapse> |
| | | |
| | | <view wx:if="{{noList}}" class="noData"> |
| | | <t-empty icon="folder-open" description="暂无数据" /> |
| | | </view> |
| | | </view> |
| | | <view class="bottom-box"> |
| | | <t-loading wx:if="{{isMore == true}}"></t-loading> |
| | | <text wx:if="{{isMore == false}}">没有更多了</text> |
| | | </view> |
| | | </view> |
| | | <view class="loading-box" wx:if="{{loading}}"> |
| | | <view class="loading-box" wx:if="{{loading}}" > |
| | | <t-loading loading="{{loading}}" size="60rpx"></t-loading> |
| | | </view> |
| | | |