''
liukangdong
2024-08-02 1cee3a660c5f8e5f4290ae894c2898c4966a834d
wechat_jiaxuan/pages/productVideo/index.js
@@ -1,4 +1,4 @@
import { getZhongTaiVideoPage, getCataLogTagList } from '../../api/index'
import { getZhongTaiVideoPage, actionDo, getCataLogTagList } from '../../api/index'
Page({
  /**
@@ -50,14 +50,23 @@
    })
  },
  itemClick(e) {
    const { videourl } = e.currentTarget.dataset
    let videoPlay = this.selectComponent('.videoPlay');
    if(videoPlay){
      videoPlay.startPlayVideo(videourl,this );
    }
    // this.startPlayVideo(videourl)
    const { id} = e.currentTarget.dataset.item
    const { dataList } = this.data
    dataList.forEach(ite => {
      if(id === ite.id){
        ite.viewCount += 1
      }
    })
    this.setData({ dataList })
    actionDo({
      actionType: 'view',
      id: id
    })
    // let videoPlay = this.selectComponent('.videoPlay');
    // if(videoPlay){
    //   videoPlay.startPlayVideo(videourl,this );
    // }
    // this.startPlayVideo(videourl)
    // wx.previewMedia({
    //   sources: [{ url: videourl, type: 'video' }]
    // })