闫增涛
2025-03-31 04c7b0163caeae4ab1c5da62e301fa993101cfad
packageBookService/pages/bookServices/detail/components/learnResource/learnResource.js
@@ -1,4 +1,8 @@
// pages/bookServices/detail/components/learnResource/learnResource.js
import {
  loginInfo
} from "../../../../../../assets/js/login";
const app = getApp()
Component({
  /**
   * 组件的属性列表
@@ -18,7 +22,18 @@
    },
    isGoBuyResource: {
      type: Boolean
    }
    },
    isShowBuyCloundMenu: {
      type: Boolean,
      default: false
    },
    isShowBuyCloundBtn: {
      type: Boolean,
      default: true
    },
    learnTaskData: {
      type: Object,
    },
  },
  /**
@@ -43,15 +58,23 @@
    },
    // 跳转资源购买页
    goBuyResource() {
      if (!this.properties.isGoBuyResource) {
        return wx.showToast({
          icon: 'error',
          title: '暂无可购买资源',
      const gotoPageFun = () => {
        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}`,
        })
      }
      wx.navigateTo({
        url: `/packageBookService/pages/bookServices/detail/buyResource/index?productLinkPath=${this.properties.buyResourceData.productLinkPath}&refCode=${this.properties.buyResourceData.refCode}&bookId=${this.properties.bookId}`,
      })
      const token = wx.getStorageSync(app.config.tokenKey);
      if (token) {
        gotoPageFun()
      } else {
        loginInfo(app, (data) => {})
      }
    },
    changeReceive(type) {
@@ -65,9 +88,28 @@
      })
    },
    goLearnTask() {
      wx.navigateTo({
        url: `/packageBookService/pages/bookServices/detail/components/learnTask/index?bookId=${this.properties.bookId}`,
      })
      const gotoPageFun = () => {
        wx.navigateTo({
          url: `/packageBookService/pages/bookServices/detail/components/learnTask/index?bookId=${this.properties.bookId}&cmsPath=${this.properties.learnTaskData?.productLinkPath}`,
        })
      }
      const token = wx.getStorageSync(app.config.tokenKey);
      if (token) {
        gotoPageFun()
      } else {
        loginInfo(app, (data) => {
          if (data) gotoPageFun()
        })
      }
    },
    buyCloudLearnClass() {
      var myEventDetail = {} // detail对象,提供给事件监听函数
      var myEventOption = {
        bubbles: true,
        composed: true
      } // 触发事件的选项
      this.triggerEvent('buyCloudLearnClass', myEventDetail, myEventOption)
    }
  }
})