闫增涛
2024-09-19 cfd502b3e4c27bf8d0d92002e918835dccb06e05
packageBookService/pages/bookServices/detail/components/learnResource/learnResource.js
@@ -4,7 +4,29 @@
   * 组件的属性列表
   */
  properties: {
    buyResourceData: {
      type: Object,
    },
    bookId: {
      type: Number
    },
    isshowDrawBtn: {
      type: Boolean
    },
    successOrderNumber: {
      type: Number,
    },
    isGoBuyResource: {
      type: Boolean
    },
    isShowBuyCloundMenu: {
      type: Boolean,
      default: false
    },
    isShowBuyCloundBtn:{
      type:Boolean,
      default:true
    }
  },
  /**
@@ -27,14 +49,19 @@
      } // 触发事件的选项
      this.triggerEvent('getFreeResource', myEventDetail, myEventOption)
    },
    allAddShoppiingCar() {
      var myEventDetail = {} // detail对象,提供给事件监听函数
      var myEventOption = {
        bubbles: true,
        composed: true
      } // 触发事件的选项
      this.triggerEvent('allAddShoppiingCar', myEventDetail, myEventOption)
    // 跳转资源购买页
    goBuyResource() {
      if (!this.properties.isGoBuyResource) {
        return wx.showToast({
          icon: 'error',
          title: '暂无可购买资源',
        })
      }
      wx.navigateTo({
        url: `/packageBookService/pages/bookServices/detail/buyResource/index?productLinkPath=${this.properties.buyResourceData.productLinkPath}&refCode=${this.properties.buyResourceData.refCode}&bookId=${this.properties.bookId}`,
      })
    },
    changeReceive(type) {
      this.setData({
        receive: type
@@ -44,6 +71,19 @@
      this.setData({
        buy: type
      })
    },
    goLearnTask() {
      wx.navigateTo({
        url: `/packageBookService/pages/bookServices/detail/components/learnTask/index?bookId=${this.properties.bookId}`,
      })
    },
    buyCloudLearnClass() {
      var myEventDetail = {} // detail对象,提供给事件监听函数
      var myEventOption = {
        bubbles: true,
        composed: true
      } // 触发事件的选项
      this.triggerEvent('buyCloudLearnClass', myEventDetail, myEventOption)
    }
  }
})
})