litian
2024-08-27 366de5b4636679392a1e3d2984fc23bd5eaa5ac3
packagePersonal/pages/publishBooks/index.wxml
@@ -1,2 +1,70 @@
<!--pages/personalCenter/publishBooks/index.wxml-->
<text>pages/personalCenter/publishBooks/index.wxml</text>
<view class="container" wx:if="{{!skeletonLoding}}">
  <scroll-view class="scroll content" bind:scroll="onPageScroll" model:scroll-top="{{setScrollValue}}" scroll-y refresher-enabled="{{true}}" lower-threshold="{{200}}" refresher-threshold="{{80}}" refresher-default-style="none" refresher-triggered="{{triggered}}" bindrefresherpulling="{{refresh.onPulling}}" bindrefresherrefresh="onPullDownRefresh" bindscrolltolower="onReachBottom">
    <view slot="refresher" class="refresh-container">
      <view class="loading">
        <t-loading theme="circular" size="40rpx" text="正在刷新..." class="wrapper" />
      </view>
    </view>
    <view class="pageInfo" wx:if="{{list.length > 0 && !skeletonLoding}}">
      <view class="pageTotalCount">共{{pageTotalCount}}条记录</view>
      <view class="content-item" wx:for="{{list}}" wx:for-item="item" wx:for-index="index" wx:key="index">
        <view class="item-con" data-info="{{item}}" bindtap="toList">
          <view class="titleBox">
            <view class="item-title">{{item.name}}</view>
          </view>
          <view class="createDate">{{item.createDate}}</view>
        </view>
      </view>
    </view>
    <view wx:if="{{list.length == 0 && !skeletonLoding}}" class="empyt">
      <empty />
    </view>
    <view class="bottom-loading" wx:if="{{bottomLoading}}">
      <t-loading theme="circular" size="40rpx" text="加载中..." class="wrapper" />
    </view>
    <view class="bottom-loading" style="color: #ccc;font-size: 28rpx;" wx:if="{{isMoreData}}">
      <text>没有更多了</text>
    </view>
  </scroll-view>
  <t-popup visible="{{visible}}" bind:visible-change="onVisibleChange" placement="center">
    <view class="block">
      <scroll-view class="srcolbox" scroll-y scroll-height-animation="true">
        <view class="block-content">
          <view class="label">选题名称:</view>
          <view class="infoCon">{{info.topicName}}</view>
          <view class="label">申报人:</view>
          <view class="infoCon">{{info.declarer}}</view>
          <view class="label">申报单位:</view>
          <view class="infoCon">{{info.declarationUnit}}</view>
          <view class="label">学科专业:</view>
          <view class="infoCon">{{info.disciplineMajor}}</view>
          <view class="label">作者基本情况:</view>
          <view class="infoCon">{{info.authorBasicInformation}}</view>
          <view class="label">联系电话:</view>
          <view class="infoCon">{{info.phone}}</view>
          <view class="label">邮箱:</view>
          <view class="infoCon">{{info.email}}</view>
          <view class="label">读者对象:</view>
          <view class="infoCon">{{info.targetReaders}}</view>
          <view class="label">选题特色:</view>
          <view class="infoCon">{{info.topicFeatures}}</view>
          <view class="label">选题学术影响与预期社会效益:</view>
          <view class="infoCon">{{info.topicImpactAndExpected || '-'}}</view>
          <view class="label">选题的进度安排:</view>
          <view class="infoCon">{{info.topicProgress || '-'}}</view>
          <view class="label">市场分析:</view>
          <view class="infoCon">{{info.marketAnalysis || '-'}}</view>
          <view class="label">营销与宣传推广计划:</view>
          <view class="infoCon">{{info.marketingAndPromotionPlan || '-'}}</view>
          <view class="label">配套数字资源开发方案:</view>
          <view class="infoCon">{{info.digitalResourceDevelopmentPlan|| '-'}}</view>
          <view class="label">存在的其他问题:</view>
          <view class="infoCon">{{info.otherExistingIssues || '-'}}</view>
        </view>
      </scroll-view>
      <t-icon t-class="close-btn" name="close-circle" size="64rpx" color="#fff" bind:tap="onClose" />
    </view>
  </t-popup>
  <t-back-top theme="round" wx:if="{{isBackTop}}" text="顶部" bind:to-top="onToTop"></t-back-top>
</view>