From 138db89b3193d60850e203e1847e2f91d2b00ebc Mon Sep 17 00:00:00 2001
From: liukangdong <898885815@qq.com>
Date: 星期三, 07 八月 2024 18:19:47 +0800
Subject: [PATCH] lll

---
 wechat_staff/components/disRealpic/index.js |   43 ++++++++++++++++++++++++++++++++++---------
 1 files changed, 34 insertions(+), 9 deletions(-)

diff --git a/wechat_staff/components/disRealpic/index.js b/wechat_staff/components/disRealpic/index.js
index fe78505..94dce6b 100644
--- a/wechat_staff/components/disRealpic/index.js
+++ b/wechat_staff/components/disRealpic/index.js
@@ -8,6 +8,8 @@
     menuButtonInfo: Object
   },
   data: {
+    acVid: '',
+    viewIdList: [],
     // 鍔ㄧ敾
     showTouch: true,
     animationData: {},
@@ -43,16 +45,16 @@
     },
     touchmove(e) {
       var touchMove = e.detail.scrollTop;
-      if(touchMove - touchDot > 16){
+      if(touchMove - touchDot > 24){
         touchDot = touchMove
         this.fadeOut();
       }
-      if(touchDot - touchMove > 16){
+      if(touchDot - touchMove > 24){
         touchDot = touchMove
         setTimeout(() => {
           this.setData({ showTouch: true })
           this.fadeIn();
-        })
+        }, 200)
       }
     },
     fadeIn: function () {
@@ -176,12 +178,6 @@
     handleDetail(e) {
       const item = e.currentTarget.dataset.item
       console.log('item', item);
-      if(item.openType == 'video'){
-        let videoPlay = this.selectComponent('.videoPlay'); 
-        if(videoPlay){ 
-          videoPlay.startPlayVideo(item.openContent,this );
-        } 
-      }
       if(item.openType == 'link'){
         wx.navigateTo({
           url: '/pages/webView/index',
@@ -197,6 +193,35 @@
         })
       }
     },
+    videoClick(e) {
+      const { id } = e.currentTarget.dataset
+      const { dataList, acVid, viewIdList } = this.data
+      const index = viewIdList.findIndex(i => i === 'video' + id)
+      console.log('acVid', acVid);
+      console.log('id', id);
+      if(acVid){
+        if('video' + id != acVid){
+          wx.createVideoContext(acVid, this).pause()
+          wx.createVideoContext('video' + id, this).play()
+          this.setData({ acVid: 'video' + id })
+        }
+      }else{
+        this.setData({ acVid: 'video' + id })
+        wx.createVideoContext('video' + id, this).play()
+      }
+      dataList.forEach(ite => {
+        if(id === ite.id && index === -1){
+          ite.viewCount += 1
+          viewIdList.push('video' + id)
+          actionDo({
+            actionType: 'view',
+            id: id
+          })
+          this.setData({ viewIdList })
+        }
+      })
+      this.setData({ dataList })
+    },
     tagClick(e) {
       if(this.data.isLoading){
         return

--
Gitblit v1.9.3