28 lines
467 B
JavaScript
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 })
|
|
}
|
|
}
|
|
}) |