bug
litian
2024-09-09 668c0a4058510a6022be06818540ba89778a5486
packageDomain/pages/resourceDetails/myVideo/index.js
@@ -26,6 +26,7 @@
    parentProductLinkPath: '',
    productLinkPath: '',
    threeLeveData: [],
    source: "",
    showData: '',
    showDataVod: '',
    src: '',
@@ -85,6 +86,7 @@
      productLinkPath: options.productLinkPath,
      formPath: options.formPath,
      flag: false,
      source: options.source,
    })
    if (options.parentName !== "教学资源" && options.parentName !== "云学习") {
      this.setData({
@@ -253,11 +255,17 @@
    }
    app.MG.store.getProductDetail(query).then(res => {
      res.datas.cmsDatas[0].datas.forEach((item) => {
        if (item.selectType === "video" || item.learnSelectType === "video") {
          this.data.threeLeveData.push(item)
          this.setData({
            threeLeveData: this.data.threeLeveData
          })
        if (this.data.source == 'qrcode') {
          if (item.id == this.data.activeId) {
            this.data.threeLeveData.push(item);
          }
        } else {
          if (item.selectType === "video" || item.learnSelectType === "video") {
            this.data.threeLeveData.push(item)
            this.setData({
              threeLeveData: this.data.threeLeveData
            })
          }
        }
      })
      this.data.threeLeveData.forEach((items, index) => { // 修改此处添加index参数