This commit is contained in:
Kiyan 2017-05-17 13:50:06 +08:00
parent 9f508e52a4
commit 72b8145b0c
4 changed files with 25 additions and 0 deletions

View File

@ -118,5 +118,11 @@ Page({
callback(address) {
getApp().setCurrentAddress(address)
this.initAddress()
},
onShareAppMessage() {
return {
title: '首页',
path: '/pages/index/index'
}
}
})

View File

@ -59,5 +59,11 @@ Page({
this.setData({
loginInfo: loginInfo.user_info
})
},
onShareAppMessage() {
return {
title: '我的信息',
path: '/pages/mine/mine'
}
}
})

View File

@ -147,5 +147,11 @@ Page({
if (this.data.list) {
this.onLoad()
}
},
onShareAppMessage() {
return {
title: '我的订单',
path: '/pages/order/list'
}
}
})

View File

@ -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}`
}
}
})