闫增涛
2024-09-19 f7ae9d99b12988cd09975aeee1fbcc90e072303c
云学习查看
3个文件已修改
22 ■■■■■ 已修改文件
packageBookService/pages/bookServices/detail/components/tree/index.wxml 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
packageDomain/pages/resourceDetails/myVideo/index.js 12 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/cart/index.wxss 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
packageBookService/pages/bookServices/detail/components/tree/index.wxml
@@ -152,7 +152,7 @@
            <view class="title-t">
              <view class="title-name">{{item.name}} </view>
              <view wx:if="{{item.sysType =='CmsFolder'}}" class="title-num">
                ({{item.childrenItem}})
                ({{item.childrenItem ? item.childrenItem: 0 }})
              </view>
            </view>
            <view class="title-icon">
packageDomain/pages/resourceDetails/myVideo/index.js
@@ -298,7 +298,6 @@
          }
        } else {
          if (item.selectType === "video" || item.learnSelectType === "video") {
            if (this.data.storeInfo == 'jsek_digitalCourses') {
              if (item.sysType == 'CmsItem') this.data.threeLeveData.push(item)
              // if (this.data.isBuy) {
@@ -311,10 +310,19 @@
              //   }
              // }
            } else {
              // 买了
              if (this.data.buyList.length) {
                if (this.data.buyList.some(citem => item.productLinkPath.includes(citem.productLinkPath))) this.data.threeLeveData.push(item)
              } else {
                if (!item.saleMethod.length) this.data.threeLeveData.push(item)
                if (!item.saleMethod.length) {
                  // 没买且无销售方式
                  this.data.threeLeveData.push(item)
                } else {
                  // 没买且销售方式过期
                  const itemSaleMethod = item.saleMethod.find(citem => citem.SaleType == 'Normal')
                  if (new Date().getTime() > new Date(itemSaleMethod.EndDate).getTime()) this.data.threeLeveData.push(item)
                }
              }
            }
            this.setData({
pages/cart/index.wxss
@@ -27,14 +27,10 @@
}
.outsideContentBox {
  /* padding: 30rpx; */
  background: #F2F3F8;
  border-radius: 18rpx 18rpx 18rpx 18rpx;
  /* padding-bottom: 325rpx; */
  height: calc(100vh - 250rpx);
  /* width: calc(100vw - 60rpx); */
  height: calc(100vh - 200rpx);
  /* padding-bottom: 30rpx; */
}
.bottomBox {