vue页面加载前根据数据切换钩子函数
export default {route: {activate: function (transition) {this.$http.patch('/api/merchants/' + window.user.merchantId + '/users/' + window.user.id + '/items/' + this.$route.params.i
·
export default {
route: {
activate: function (transition) {
this.$http.patch('/api/merchants/' + window.user.merchantId + '/users/' + window.user.id + '/items/' + this.$route.params.id + '/give').then(function (response) {
if (response.data.data.status) {
this.$set('data', response.data)
transition.next()
} else {
$('body>div').remove()
$.alert(response.data.data.msg, function () {
wx.closeWindow()
})
}
})
}
}
}
参考网站:http://router.vuejs.org/zh-cn/pipeline/hooks.html#transition-object
更多推荐
已为社区贡献12条内容
所有评论(0)