闫增涛
2024-03-26 1cad6ba03f8cb848352c6739c54395128e73485f
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
<!--packageBookService/pages/bookServices/detail/buyResource/index.wxml-->
<!--导航区域 -->
<view style="width: 100%; height: {{barHeight}}px; "></view>
<view class="nacigationBar" style="width: 70%; height: {{navBarHeight}}px;">
  <view class="flex">
    <view>
      <t-icon
        name="chevron-left"
        size="30"
        data-name="{{item}}"
        bind:click="goBack"
      />
    </view>
    <view class="navbar-title">资源购买</view>
  </view>
  <view bind:tap="checkAll"> 全选 </view>
</view>
 
<!-- 内容 -->
 
<view class="buy-resource" wx:if="{{!loading}}">
  <tree
    id="tree"
    treeList="{{learn}}"
    tab="{{'jsek_cloudLearning'}}"
    isShowCheck="{{true}}"
    openIds="{{openLearnids}}"
  />
</view>
 
<view class="noData" wx:if="{{loading}}">
  <t-loading size="60rpx" loading="{{loading}}" />
</view>
 
<view class="page-bottom">
  <t-button theme="primary" size="large" class="btn-buy">批量购买</t-button>
</view>