闫增涛
2025-03-28 b97bfcb85b2ded3b1f380e9a98b54b836faabba5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
// pages/bookServices/detail/components/learnResource/learnResource.js
import {
  loginInfo
} from "../../../../../../assets/js/login";
Component({
  /**
   * 组件的属性列表
   */
  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
    },
    learnTaskData: {
      type: Object,
    },
  },
 
  /**
   * 组件的初始数据
   */
  data: {
    receive: false,
    buy: false,
  },
 
  /**
   * 组件的方法列表
   */
  methods: {
    getFreeResource() {
      var myEventDetail = {} // detail对象,提供给事件监听函数
      var myEventOption = {
        bubbles: true,
        composed: true
      } // 触发事件的选项
      this.triggerEvent('getFreeResource', myEventDetail, myEventOption)
    },
    // 跳转资源购买页
    goBuyResource() {
      const token = wx.getStorageSync(app.config.tokenKey);
      if (token) {
        gotoPageFun()
      } else {
        loginInfo(app, (data) => {
        })
      }
      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}`,
        })
      }
    },
 
    changeReceive(type) {
      this.setData({
        receive: type
      })
    },
    changeBuy(type) {
      this.setData({
        buy: type
      })
    },
    goLearnTask() {
      const token = wx.getStorageSync(app.config.tokenKey);
      if (token) {
        gotoPageFun()
      } else {
        loginInfo(app, (data) => {
          if (data) gotoPageFun()
        })
      }
      const gotoPageFun = () => {
        wx.navigateTo({
          url: `/packageBookService/pages/bookServices/detail/components/learnTask/index?bookId=${this.properties.bookId}&cmsPath=${this.properties.learnTaskData?.productLinkPath}`,
        })
      }
    },
    buyCloudLearnClass() {
      var myEventDetail = {} // detail对象,提供给事件监听函数
      var myEventOption = {
        bubbles: true,
        composed: true
      } // 触发事件的选项
      this.triggerEvent('buyCloudLearnClass', myEventDetail, myEventOption)
    }
  }
})