From 668c0a4058510a6022be06818540ba89778a5486 Mon Sep 17 00:00:00 2001
From: litian <C21AF165>
Date: 星期一, 09 九月 2024 14:31:22 +0800
Subject: [PATCH] bug

---
 packageDomain/pages/resourceDetails/myVideo/index.js |   18 +++++++++++++-----
 1 files changed, 13 insertions(+), 5 deletions(-)

diff --git a/packageDomain/pages/resourceDetails/myVideo/index.js b/packageDomain/pages/resourceDetails/myVideo/index.js
index 6beb84e..74ffbd1 100644
--- a/packageDomain/pages/resourceDetails/myVideo/index.js
+++ b/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鍙傛暟

--
Gitblit v1.9.1