bug
闫增涛
2024-09-07 c6c73b7d709322052b9cd6777b3d6657e0d43d30
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
<!--pages/digitalTextbooks/digitalTextbooks.wxml-->
<import src="index.skeleton.wxml" />
<template is="skeleton" wx:if="{{loading}}" />
<view wx:if="{{!loading}}">
  <view style="width: 100%; height: {{barHeight}}px;"></view>
  <view class="nacigationBar" style="width: 70%; height: {{navBarHeight}}px;">
    <view class="back-icon">
      <!-- <t-icon name="chevron-left" size="30" data-name="{{item}}" bind:click="goBack" /> -->
      <image
        src="/static/images/digitalTextbooks/chevron-left.png"
        bind:tap="goBack"
        mode="aspectFit"
      />
    </view>
    <t-search
      model:value="{{searchValue}}"
      shape="round"
      placeholder="请输入教材名称/ISBN/作者"
      class="navBar-search"
      style="width: 464rpx"
      bind:submit="searchBook"
    />
  </view>
  <view class="heardTab">
    <view class="tabBox">
      <t-tabs
        defaultValue="{{0}}"
        bind:change="selectTab"
        t-class="custom-tabs"
      >
        <t-tab-panel
          wx:for="{{tabList}}"
          wx:key="index"
          wx:for-item="item"
          label="{{item.name}}"
          value="{{index}}"
          style="{{tabPanelstyle}}"
        >
        </t-tab-panel>
      </t-tabs>
    </view>
    <view class="dropdown">
      <t-dropdown-menu>
        <t-dropdown-item
          options="{{sorter.options}}"
          default-value="{{sorter.value}}"
          bindchange="onSort"
        />
      </t-dropdown-menu>
    </view>
  </view>
  <view class="contentBox">
    <view class="titleBox">
      <view class="frameBox"></view>
      <view class="titleTextBox">
        <!-- <image src="/static/images/digitalCourses/zhuantitaolun@2x.png" mode="aspectFit" /> -->
        <view>数字教材列表</view>
      </view>
    </view>
    <scroll-view
      scroll-y="{{true}}"
      class="outsideContentBox"
      bindscrolltolower="onScrollToLower"
    >
      <view class="bookContentBox">
        <view
          class="external"
          wx:for="{{digitalTextbooksData}}"
          wx:key="index"
          wx:for-item="item"
          wx:for-index="index"
          data-item="{{item}}"
          bind:tap="jumpDetails"
        >
          <view class="amountClick">
            <t-icon
              name="browse"
              size="15"
              data-name="{{item}}"
              bind:click="goBack"
            />
            <view style="margin-left: 5rpx">{{item.viewCount}}</view>
          </view>
          <view class="imageBox">
            <image
              src="{{item.icon ? item.icon : '/static/images/default-book-img.png'}}"
              mode=""
            />
          </view>
          <view class="bookName">{{item.name}}</view>
          <view class="information">
            <view wx:if="{{item.author}}" class="book-author">
              {{ item.author }}
            </view>
            <view wx:else>-</view>
            <view wx:if="{{item.price == 0}}" class="price"> 免费</view>
            <view wx:else class="price">¥{{ item.price }}</view>
          </view>
        </view>
 
        <view wx:if="{{!digitalTextbooksData.length }}" class="noData">
          <!-- <t-empty icon="folder-open" description="暂无数据" /> -->
          <empty />
        </view>
      </view>
    </scroll-view>
  </view>
</view>