From eb3cf68faee31402822350045ee08f3fea28cd5c Mon Sep 17 00:00:00 2001
From: 闫增涛 <1829501689@qq.com>
Date: 星期五, 26 四月 2024 11:02:49 +0800
Subject: [PATCH] 资源购买页去除已购买资源

---
 packageBookService/pages/bookServices/detail/buyResource/index.wxml |   80 ++++++++++++++++++++++++---------------
 1 files changed, 49 insertions(+), 31 deletions(-)

diff --git a/packageBookService/pages/bookServices/detail/buyResource/index.wxml b/packageBookService/pages/bookServices/detail/buyResource/index.wxml
index f446002..93a4918 100644
--- a/packageBookService/pages/bookServices/detail/buyResource/index.wxml
+++ b/packageBookService/pages/bookServices/detail/buyResource/index.wxml
@@ -1,37 +1,55 @@
-<!--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"
-      />
+<!-- 璧勬簮璐拱椤甸潰 -->
+
+<import src="index.skeleton.wxml" />
+<template is="skeleton" wx:if="{{loading}}" />
+
+<view wx:if="{{haider}}">
+  <!--瀵艰埅鍖哄煙 -->
+  <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 class="navbar-title">璧勬簮璐拱</view>
+    <view bind:tap="checkAll"> {{checkAllState ? '鍏ㄩ��' : '鍙栨秷'}} </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="buy-resource" wx:if="{{!loading}}">
+    <tree
+      id="tree"
+      paymentPage="{{paymentPage}}"
+      superior="{{superior}}"
+      treeList="{{learn}}"
+      learnList="{{learn}}"
+      tab="{{'jsek_cloudLearning'}}"
+      isShowCheck="{{true}}"
+      openIds="{{openLearnids}}"
+      checkAllState="{{checkAllState}}"
+      bind:changeCheckAll="changeCheckAll"
+      bind:changeListChecked="changeListChecked"
+      bind:changeResourceChecked="changeResourceChecked"
+    />
+    <view class="noData" wx:if="{{noData}}">
+      <t-empty icon="folder-open" description="鏆傛棤鏁版嵁" />
+    </view>
+  </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 class="page-bottom">
+    <t-button
+      theme="primary"
+      size="large"
+      class="btn-buy"
+      bindtap="batchPurchase"
+      >鎵归噺璐拱</t-button
+    >
+  </view>
 </view>

--
Gitblit v1.9.1