yiming
2024-04-16 cb15c57d0ff984f5a100cf25d560fb0a69c00984
packageBookService/pages/bookServices/detail/components/note/note.wxml
@@ -7,9 +7,9 @@
      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>
@@ -19,7 +19,12 @@
      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"
@@ -53,13 +58,18 @@
      <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>
<!-- 记笔记弹窗 -->