From 5d10d758116c3671cde860a39e59027672102b6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E6=B6=A6=E5=AF=92?= Date: Tue, 30 Jul 2024 11:02:05 +0800 Subject: [PATCH] =?UTF-8?q?fleat:=E5=B0=8F=E7=A8=8B=E5=BA=8F=E5=8C=BB?= =?UTF-8?q?=E9=99=A2=E9=80=9A=E7=9F=A5=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- littleApp_child/packageA/pages/article/article.js | 2 +- .../packageA/pages/editAddress/editAddress.js | 4 ++-- .../packageA/pages/messageContent/messageContent.js | 1 - littleApp_child/pages/Guide/guide.js | 18 +++++++++--------- 4 files changed, 12 insertions(+), 13 deletions(-) diff --git a/littleApp_child/packageA/pages/article/article.js b/littleApp_child/packageA/pages/article/article.js index 126a104..0e6efb6 100644 --- a/littleApp_child/packageA/pages/article/article.js +++ b/littleApp_child/packageA/pages/article/article.js @@ -16,7 +16,7 @@ Page({ }, onLoad: function (options) { this.data.id = options.id; - console.log(this.data.id) + // console.log(this.data.id) this.getArticle() }, getArticle() { diff --git a/littleApp_child/packageA/pages/editAddress/editAddress.js b/littleApp_child/packageA/pages/editAddress/editAddress.js index 955e010..ec544b8 100644 --- a/littleApp_child/packageA/pages/editAddress/editAddress.js +++ b/littleApp_child/packageA/pages/editAddress/editAddress.js @@ -15,7 +15,7 @@ Page(Object.assign({}, AreaPicker,{ } }, onAreaCommit(locationList, e) {//当用户更换地区 - console.log('选择地址后', locationList) + // console.log('选择地址后', locationList) var self = this; self.addrInfo = { province: locationList[0] || {}, @@ -35,7 +35,7 @@ Page(Object.assign({}, AreaPicker,{ }); }, bindKeyInput: function (e) { - console.log(e.detail.value) + // console.log(e.detail.value) this.data.babyAddress = e.detail.value this.setData({ babyAddress: this.data.babyAddress diff --git a/littleApp_child/packageA/pages/messageContent/messageContent.js b/littleApp_child/packageA/pages/messageContent/messageContent.js index 4638680..2c57aea 100644 --- a/littleApp_child/packageA/pages/messageContent/messageContent.js +++ b/littleApp_child/packageA/pages/messageContent/messageContent.js @@ -25,7 +25,6 @@ Page({ networkUtil._get(api.getBabyMsgById,{ msgId:id },function (res) { - console.log(res,'res'); _that.setData({ setObject:res.data.object }) diff --git a/littleApp_child/pages/Guide/guide.js b/littleApp_child/pages/Guide/guide.js index fad5976..64f0d95 100644 --- a/littleApp_child/pages/Guide/guide.js +++ b/littleApp_child/pages/Guide/guide.js @@ -61,7 +61,7 @@ Page({ this.data.id = e.categoryId this.data.category = e.category - console.log(e.categoryId) + // console.log(e.categoryId) // 数据初始化 page = 1 hasMore = true @@ -109,10 +109,10 @@ Page({ this.requestData(); }, myScroll: function(e) { - console.log("e:", e) + // console.log("e:", e) // console.log("aaaaaaaaaaaaaaaaaaaaaaaaa " + e.detail.scrollTop + " ==== " + e.detail.scrollHeight + " === " + wx.getSystemInfoSync().windowHeight) // if (e.detail.scrollTop >= (e.detail.scrollHeight - wx.getSystemInfoSync().windowHeight - 3)) { - console.log("bbbbbbbb") + // console.log("bbbbbbbb") this.loadMore() // } }, @@ -127,7 +127,7 @@ Page({ days: getApp().globalData.days } networkUtil._get(api.babyPrecise, param, function(res) { - console.log(res) + // console.log(res) isRefresh = false var arr = [] @@ -153,13 +153,13 @@ Page({ categoryId: self.data.id, days: getApp().globalData.days } - console.log(" categoryId ========= " + " ==== " + self.data.id) + // console.log(" categoryId ========= " + " ==== " + self.data.id) if (!param.categoryId) { param.categoryId = 4316 } networkUtil._get(api.articleList, param, function(res) { - console.log(param) - console.log(res) + // console.log(param) + // console.log(res) isRefresh = false var arr = [] if (page > 0) { // 加载更多模式 @@ -189,7 +189,7 @@ Page({ limit: 15 } networkUtil._get(api.riskGuideList, param, function(res) { - console.log(res) + // console.log(res) isRefresh = false var arr = [] if (page > 1) { // 加载更多模式 @@ -211,7 +211,7 @@ Page({ }, // 文章点赞 articleLike(e) { - console.log(e) + // console.log(e) var self = this // 已经点赞 if (e.currentTarget.dataset.islike == 1) { -- 1.8.3.1