''
liukangdong
2024-08-06 7b950f425d01b74febcebb9a6506e1607c3a2a0f
wechat_jiaxuan/pages/productVideo/index.js
@@ -7,10 +7,12 @@
  data: {
    acVid: '',
    viewIdList: [],
    activeIndex: -1,
    activeParam: [],
    tagCodes: [],
    videoContext:null,
    category: [],
    tagCodes: '',
    videoUrl: '',
    showVideo: false,
    isShow:false,
@@ -37,7 +39,7 @@
  getList() {
    const { pageSize, pageNum, tagCodes } = this.data
    getZhongTaiVideoPage({
      pageSize,pageNum, tagCodes: tagCodes ? [tagCodes] : null
      pageSize,pageNum, tagCodes
    }).then(res => {
      this.setData({
        dataList: [...this.data.dataList, ...res.data.records],
@@ -80,8 +82,8 @@
    this.setData({ dataList })
  },
  cateClick(e) {
    const { code } = e.target.dataset
    this.setData({ tagCodes: code })
    const { code, index } = e.target.dataset
    this.setData({ tagCodes: [code], activeIndex: index })
    this.setData({ total: 0, dataList: [], pageNum: 1 })
    this.getList()
  },