2023-04-17 16:14:18 +08:00

28 lines
467 B
JavaScript

// pages/pageIndex/cardBrands/cardBrands.js
Component({
/**
* 组件的属性列表
*/
properties: {
item: Object
},
/**
* 组件的初始数据
*/
data: {
},
/**
* 组件的方法列表
*/
methods: {
play() {
wx.navigateTo({
url: '/pages/video_show/video_show?src=' + this.properties.item.video[0].video,
})
// this.triggerEvent('play', { src: this.properties.item.video[0].video })
}
}
})