[新增]商城,订单,优惠券,收货地址
This commit is contained in:
38
components/mallIndex_list/mallIndex_list.js
Normal file
38
components/mallIndex_list/mallIndex_list.js
Normal file
@@ -0,0 +1,38 @@
|
||||
|
||||
/**
|
||||
* 手太欠
|
||||
* 5g星光网-商城
|
||||
*/
|
||||
|
||||
Component({
|
||||
/**
|
||||
* 组件的属性列表
|
||||
*/
|
||||
properties:{
|
||||
pushList :{
|
||||
type : Array,
|
||||
value : []
|
||||
},
|
||||
lodingStats :{
|
||||
type : Boolean,
|
||||
value : false
|
||||
},
|
||||
hasMore :{
|
||||
type : Boolean,
|
||||
value : false
|
||||
},
|
||||
},
|
||||
|
||||
/**
|
||||
* 组件的方法列表
|
||||
*/
|
||||
methods: {
|
||||
// 页面跳转
|
||||
push(e) {
|
||||
let id = e.currentTarget.dataset.id
|
||||
wx.navigateTo({
|
||||
url : '/pages/mall_details/mall_details?id=' + id,
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user