From e5f0fcb8e803767a2483d21cb1e8b38cb90e7de5 Mon Sep 17 00:00:00 2001 From: litian <C21AF165> Date: 星期三, 13 十一月 2024 16:48:24 +0800 Subject: [PATCH] 文件状态 --- packageBookService/pages/bookServices/detail/buyResource/index.wxml | 90 ++++++++++++++++++++++++++------------------- 1 files changed, 52 insertions(+), 38 deletions(-) diff --git a/packageBookService/pages/bookServices/detail/buyResource/index.wxml b/packageBookService/pages/bookServices/detail/buyResource/index.wxml index 664b0c6..9f03c28 100644 --- a/packageBookService/pages/bookServices/detail/buyResource/index.wxml +++ b/packageBookService/pages/bookServices/detail/buyResource/index.wxml @@ -1,42 +1,56 @@ -<!--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 style="width: 100%; height: {{barHeight}}px; "></view> + <view class="nacigationBar" style="width: 70%; height: {{navBarHeight}}px;"> + <view class="flex"> + <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> + <view class="navbar-title">璧勬簮璐拱</view> </view> - <view class="navbar-title">璧勬簮璐拱</view> + <view bind:tap="checkAll"> {{checkAllState ? '鍏ㄩ��' : '鍙栨秷'}} </view> </view> - <view bind:tap="checkAll"> {{checkAllState ? '鍙栨秷' : '鍏ㄩ��'}} </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" + bind:updateCloudLearning="updateCloudLearning" + /> + <view class="noData" wx:if="{{noData}}"> + <!-- <t-empty icon="folder-open" description="鏆傛棤鏁版嵁" /> --> + <empty /> + </view> + </view> + <view class="page-bottom"> + <t-button + theme="primary" + size="large" + class="btn-buy" + bindtap="batchPurchase" + >鎵归噺璐拱</t-button + > + </view> </view> -<!-- 鍐呭 --> - -<view class="buy-resource" wx:if="{{!loading}}"> - <tree - id="tree" - paymentPage="{{paymentPage}}" - superior="{{superior}}" - treeList="{{learn}}" - tab="{{'jsek_cloudLearning'}}" - isShowCheck="{{true}}" - openIds="{{openLearnids}}" - bind:changeCheckAll="changeCheckAll" - /> -</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" bindtap="batchPurchase" - >鎵归噺璐拱</t-button - > -</view> +<import src="index.skeleton.wxml" /> +<template is="skeleton" wx:if="{{loading}}" /> -- Gitblit v1.9.1