From 9d5789148e866f95f86d975011a9ef39d534c807 Mon Sep 17 00:00:00 2001
From: 闫增涛 <1829501689@qq.com>
Date: 星期三, 17 七月 2024 17:37:19 +0800
Subject: [PATCH] 拼树结构优化

---
 pages/digitalCourses/index.js |    9 ---------
 1 files changed, 0 insertions(+), 9 deletions(-)

diff --git a/pages/digitalCourses/index.js b/pages/digitalCourses/index.js
index 45505fc..f4ea7cc 100644
--- a/pages/digitalCourses/index.js
+++ b/pages/digitalCourses/index.js
@@ -128,8 +128,6 @@
         loading: false
       })
       this.getCourseList(newData[0])
-
-
     })
   },
 
@@ -186,7 +184,6 @@
       }
     }
     app.MG.store.getProductList(obj).then((res) => {
-      console.log(res, '7895')
       res.datas.forEach(item => {
         item.price = item.price.toFixed(2)
       })
@@ -195,21 +192,15 @@
         courseList: res.datas
       })
 
-      console.log(this.data.courseList);
-
     })
   },
   searchBook() {
-    console.log(this.data.searchValue);
     this.getCourseList(this.data.activeItem)
   },
   courseDetail(e) {
-    console.log(e);
     const item = e.currentTarget.dataset.item
-
     setNewView('productId', item.id)
     this.getCourseTypeListList()
-
     wx.navigateTo({
       url: '/pages/digitalCourses/digitalCoursesDetails/index?id=' + item.id,
     })

--
Gitblit v1.9.1