From 0c8505fb7d8a3ba0a3ef6dbcf5a7aa8cdb36105d Mon Sep 17 00:00:00 2001 From: litian <C21AF165> Date: 星期三, 10 四月 2024 16:39:13 +0800 Subject: [PATCH] 子商品跳转 --- packageBookService/pages/bookServices/detail/buyResource/index.wxml | 30 +++++++++++++++++++++++++----- 1 files changed, 25 insertions(+), 5 deletions(-) diff --git a/packageBookService/pages/bookServices/detail/buyResource/index.wxml b/packageBookService/pages/bookServices/detail/buyResource/index.wxml index 052aa35..9cd0347 100644 --- a/packageBookService/pages/bookServices/detail/buyResource/index.wxml +++ b/packageBookService/pages/bookServices/detail/buyResource/index.wxml @@ -4,17 +4,35 @@ <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" /> + <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 bind:tap="checkAll"> {{checkAllState ? '鍏ㄩ��' : '鍙栨秷'}} </view> </view> <!-- 鍐呭 --> <view class="buy-resource" wx:if="{{!loading}}"> - <tree id="tree" treeList="{{learn}}" tab="{{'jsek_cloudLearning'}}" isShowCheck="{{true}}" openIds="{{openLearnids}}" /> + <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> <view class="noData" wx:if="{{loading}}"> @@ -22,5 +40,7 @@ </view> <view class="page-bottom"> - <t-button theme="primary" size="large" class="btn-buy" bindtap="batchPurchase">鎵归噺璐拱</t-button> -</view> \ No newline at end of file + <t-button theme="primary" size="large" class="btn-buy" bindtap="batchPurchase" + >鎵归噺璐拱</t-button + > +</view> -- Gitblit v1.9.1