const customMethodMap = {
  handlePreview(e) {
    const { item: { url } } = e?.currentTarget?.dataset
    console.log('Clicked item URL:', url); // 输出URL
    const type = url.split('.')[url.split('.')?.length - 1]
    console.log('File type:', type); // 输出文件类型
    console.log(isDoc(type))
    isPic(type) && (() => {
      openPic(url)
    })()
    isDoc(type) && (() => {
      openDoc(url)
    })()
    isVideo(type) && (() => {
      console.log('Navigating to video player'); // 输出导航信息
      // openVideo(url)
      wx.navigateTo({ url: `/pages/resource/components/video-play/index?url=${url}` })
    })()
  }
}
Clicked item URL: 56/product/旭包鲜食品包装用微波炉保鲜膜视频_549867.mp4
File type: mp4
false
Navigating to video player
/pages/resource/components/video-play/index?url=${url}
{
  "pages": [
    "pages/index/index",
    "pages/resource/components/video-play/index"
  ]
}

在这里插入图片描述
在这里插入图片描述

点赞(0) 打赏

评论列表 共有 0 条评论

暂无评论

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部