Files
AGuestSaas/components/mallIndex_hot/mallIndex_hot.js
2020-12-28 11:29:09 +08:00

30 lines
496 B
JavaScript

/**
* 手太欠
* 5g星光网-商城
*/
Component({
/**
* 组件的属性列表
*/
properties:{
hotSale:{
type : Array,
value : []
}
},
/**
* 组件的方法列表
*/
methods: {
// 页面跳转
hotTap(e) {
let id = e.currentTarget.dataset.id
wx.navigateTo({
url : '/pages/mall/mall_details/mall_details?id=' + id,
})
}
}
})