litian
2024-07-11 3f62d09217740b02d45bad3e6791916a9f11695c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<!--pages/digitalTextbooks/digitalTextbooksDetails/index.wxml-->
<import src="index.skeleton.wxml" />
<template is="skeleton" wx:if="{{loading}}" />
<view wx:if="{{!loading}}">
  <view class="page-bookService">
    <scroll-view scroll-y="{{true}}" class="book" bindscrolltolower="onReachBottom">
      <view class="digital">
        <view class="book-box">
          <view class="textbookDetails">
            <view class="book-img">
              <view class="imageBox">
                <image src="{{digitalsData.icon}}" mode="" />
              </view>
              <!-- <view class="setCoolect">
              <image src="/static/images/bookService/detail/collect.png" style="width: 50rpx;" bind:tap="setCoolect" wx:if="{{isFavourite}}" />
              <image src="/static/images/bookService/detail/collecting.png" style="width: 50rpx;" bind:tap="setCoolect" wx:else="" />
            </view> -->
            </view>
            <view class="bookContent">
              <view class="headerText">
                {{digitalsData.name}}
              </view>
              <view class="content">
                <view class="styleCssBox">
                  <view style="width: 150rpx;"> 作者: </view>
                  <view class="authorBox">{{ digitalsData.author}}</view>
                </view>
                <view class="styleCssBox">
                  <view style="width: 150rpx;">ISBN:</view>
                  <view>{{ digitalsData.isbn}}</view>
                </view>
                <view class="styleCssBox">
                  <view style="width: 150rpx;"> 出版时间: </view>
                  <view>{{ publicationDate}}</view>
                </view>
              </view>
              <image src="/static/images/bookService/detail/square.png" class="right-background" />
            </view>
          </view>
          <view class="certificate">
            <view class="proposal" bind:tap="suggestBtn">
              <view class="suggestion">
                <image src="/static/images/digitalTextbooks/Suggestion@2x.png" mode="" />
              </view>
              <view class="proposalText">我要建议</view>
            </view>
            <view class="frame"></view>
            <view class="information">
              <view class="proposal" bind:tap="onCertificate">
                <view class="suggestion">
                  <image src="/static/images/digitalTextbooks/shengshu-t@2x.png" mode="" />
                </view>
                <view class="proposalText">证书申请</view>
              </view>
              <view class="informationPrice">
                <view wx:if="{{digitalsData.price != 0}}" class="fixedPrice">
                  <view> 定价: </view>
                  <view>¥{{ digitalsData.price}}</view>
                </view>
                <view wx:else>免费</view>
              </view>
            </view>
          </view>
        </view>
      </view>
      <view class="book-resource">
        <t-tabs defaultValue="{{tabValue}}" bind:change="onTabsChange" bind:click="onTabsClick" t-class="custom-tabs" t-class-content="custom-panel" class="tab-class">
          <t-tab-panel icon="{{ tabValue == 'brief' ? briefIconClick : briefIcon}}" value="brief" label="基本信息" style="{{tabPanelstyle}}">
            <view class="rubricBox">
              <view class="rubricimgBox">
                <image src="/static/images/bookService/detail/label.png" mode="" />
              </view>
              <view class="basic"> 基本信息</view>
            </view>
            <view class="basic-content" wx:if="{{digitalsData.content}}">
              <rich-text nodes="{{digitalsData.content}}"></rich-text>
            </view>
            <view class="noDataBox" wx:else>
              <!-- <t-empty icon="folder-open" description="暂无数据" font-size="80" /> -->
              <empty />
            </view>
          </t-tab-panel>
          <t-tab-panel icon="{{tabValue == 'jsek_cloudLearning' ? learnResourceClickIcon : learnResourceIcon}}" value="jsek_cloudLearning" label="证书信息" style="{{tabPanelstyle}}">
            <view class="rubricBox">
              <view class="rubricimgBox">
                <image src="/static/images/digitalTextbooks/zhengshu@2x.png" mode="" />
              </view>
              <view class="basic"> 证书信息</view>
            </view>
            <!-- <view class="certificateChart">
            <view class="chart">
              <image src="" mode="" />
            </view>
            <view class="chart">
              <image src="" mode="" />
            </view>
          </view> -->
 
 
            <view class="noDataBox">
              <!-- <t-empty icon="folder-open" description="暂无数据" font-size="80" /> -->
              <empty />
            </view>
          </t-tab-panel>
          <t-tab-panel icon="{{tabValue == 'jsek_teachingResources' ? teachResourcesClickIcon : teachResourcesIcon}}" value="jsek_teachingResources" label="作者信息" style="{{tabPanelstyle}}">
            <view class="rubricBox">
              <view class="rubricimgBox">
                <image src="/static/images/bookService/detail/author.png" mode="" />
              </view>
              <view class="basic"> 作者信息</view>
            </view>
            <view class="basic-content" wx:if="{{digitalsData.authorIntroduction}}">
              <rich-text nodes="{{digitalsData.authorIntroduction}}"></rich-text>
            </view>
            <view class="noDataBox" wx:else>
              <!-- <t-empty icon="folder-open" description="暂无数据" font-size="80" /> -->
              <empty />
            </view>
          </t-tab-panel>
          <t-tab-panel icon="{{tabValue == 'catalogue' ? catalogueClickIcon : catalogue}}" value="catalogue" label="目录" style="{{tabPanelstyle}}">
 
            <view class="rubricBox">
              <view class="rubricimgBox">
                <image src="/static/images/digitalTextbooks/mulu@3x.png" mode="" />
              </view>
              <view class="basic"> 目录</view>
            </view>
            <view class="basic-content" wx:if="{{digitalsData.catalogue}}">
              <rich-text nodes="{{digitalsData.catalogue}}"></rich-text>
            </view>
            <view class="noDataBox" wx:else>
              <!-- <t-empty icon="folder-open" description="暂无数据" font-size="80" /> -->
              <empty />
            </view>
          </t-tab-panel>
          <t-tab-panel icon="{{tabValue == 'questionBank' ? testResourceClickIocn : testResourceIocn}}" value="questionBank" label="相关教材" style="{{tabPanelstyle}}">
            <view class="rubricBox">
              <view class="rubricimgBox">
                <image src="/static/images/digitalTextbooks/Link@3x.png" mode="" />
              </view>
              <view class="basic"> 相关教材</view>
            </view>
            <view class="noDataBox" wx:if="{{relatedBookData.length <= 0}}">
              <!-- <t-empty icon="folder-open" description="暂无数据" font-size="80" /> -->
              <empty />
            </view>
            <view class="correlation" wx:else>
              <view style="margin-bottom: 30rpx;" wx:for="{{relatedBookData}}" wx:key="index" wx:for-item="item" wx:for-index="index" data-item="{{item}}" bind:tap="onCorrelationBook">
                <view class="correlationImage">
                  <image src="{{item.icon}}" mode="" />
                  <img wx:if="{{item.icon == ''}}" src="/static/images/default-book-img.png" alt="" />
                </view>
                <view class="correlationName">{{item.name}}</view>
                <view class="correlationAuthor">{{digitalsData.author}}</view>
              </view>
            </view>
          </t-tab-panel>
        </t-tabs>
 
      </view>
    </scroll-view>
 
 
 
    <!-- 我要建议弹窗 -->
    <suggest class="suggest-component" id="suggest-component" bookIcon="{{bookDetail.icon}}" bookName="{{bookDetail.name}}"></suggest>
    <view class="box-bottom">
      <view class="collection" bind:tap="setCoolect">
        <view class="collectionImage">
          <image wx:if="{{!digitalsData.isFavourite}}" src="/static/images/digitalTextbooks/wodeshoucang@2x.png" mode="" />
          <image wx:else src="/static/images/bookService/detail/collecting.png" mode="" />
        </view>
        <view class="btn-text">
          收藏
        </view>
      </view>
      <view class="trialReading" bind:tap="goRead" wx:if="{{!isBuy}}">
        <view class="collectionImage">
          <image src="/static/images/digitalTextbooks/shidu@2x.png"></image>
        </view>
        <view class="btn-text">试读</view>
      </view>
      <view class="shopCarColor" bind:tap="addBookShopcCar" wx:if="{{!isBuy}}">加入购物车</view>
      <view class="buyColor" bind:tap="buyBtn" wx:if="{{!isBuy && digitalsData.price != 0}}">立即购买</view>
      <view class="buyColor" bind:tap="buyBtn" wx:if="{{!isBuy && digitalsData.price == 0.00}}">免费领取</view>
      <view class="{{!isBuy ? 'buyColor' :'reading'}}" bind:tap="goRead" wx:if="{{isBuy}}">
        立即阅读
      </view>
    </view>
  </view>
</view>
 
<!-- 弹窗 -->
<view wx:if="{{dialogBox}}">
  <view class="popup-box" bindtap="closeDialog"></view>
  <view class="info-center" style="top:{{height*0.4}}px;">
    <view>
      <view class="row-info">
        <view class="body">
          <view class="dialog-title">学习证书申请</view>
          <view style="width: 100%; height: 2rpx; background-color: #F4F4F4;"></view>
          <view class="input-box">
            <t-input class="input" borderless placeholder="请输入真实姓名" value="{{input}}" bind:change="inputChange"></t-input>
          </view>
        </view>
        <view class="row-btn">
          <view class="left-btn" bindtap="closeDialog">取消</view>
          <view class="right-btn" bindtap="confirmM">确认</view>
        </view>
      </view>
    </view>
  </view>
</view>
 
 
<t-toast id="t-toast" />