Update link.ts (#3821)

fix(mixins): 页面栈上限后导致的跳转失败
This commit is contained in:
九旬大爷的梦 2020-12-08 15:25:55 +08:00 committed by GitHub
parent e0335973c9
commit f17e29309a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,13 +1,16 @@
Component({
properties: {
group: Object
group: Object,
},
methods: {
onClick(event) {
wx.navigateTo({
url: event.target.dataset.url
});
}
}
const { url } = event.target.dataset;
if (getCurrentPages().length > 9) {
wx.redirectTo({ url });
} else {
wx.navigateTo({ url });
}
},
},
});