分享
This commit is contained in:
parent
9f508e52a4
commit
72b8145b0c
@ -118,5 +118,11 @@ Page({
|
|||||||
callback(address) {
|
callback(address) {
|
||||||
getApp().setCurrentAddress(address)
|
getApp().setCurrentAddress(address)
|
||||||
this.initAddress()
|
this.initAddress()
|
||||||
|
},
|
||||||
|
onShareAppMessage() {
|
||||||
|
return {
|
||||||
|
title: '首页',
|
||||||
|
path: '/pages/index/index'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -59,5 +59,11 @@ Page({
|
|||||||
this.setData({
|
this.setData({
|
||||||
loginInfo: loginInfo.user_info
|
loginInfo: loginInfo.user_info
|
||||||
})
|
})
|
||||||
|
},
|
||||||
|
onShareAppMessage() {
|
||||||
|
return {
|
||||||
|
title: '我的信息',
|
||||||
|
path: '/pages/mine/mine'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
@ -147,5 +147,11 @@ Page({
|
|||||||
if (this.data.list) {
|
if (this.data.list) {
|
||||||
this.onLoad()
|
this.onLoad()
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
onShareAppMessage() {
|
||||||
|
return {
|
||||||
|
title: '我的订单',
|
||||||
|
path: '/pages/order/list'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
@ -370,5 +370,12 @@ Page({
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
},
|
||||||
|
onShareAppMessage() {
|
||||||
|
var {info:{seller_id, seller_name}} = this.data
|
||||||
|
return {
|
||||||
|
title: seller_name,
|
||||||
|
path: `/pages/shop/show?id=${seller_id}`
|
||||||
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
Loading…
x
Reference in New Issue
Block a user