Update link.ts (#3805)

fix(mixins): 页面栈上限后导致的跳转失败
This commit is contained in:
九旬大爷的梦 2020-12-03 14:43:26 +08:00 committed by GitHub
parent 44dc6e768a
commit 7244e81505
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,8 +10,12 @@ export const link = Behavior({
methods: {
jumpLink(urlKey = 'url') {
const url = this.data[urlKey];
if (url) {
wx[this.data.linkType]({ url });
if (url) {
if (this.data.linkType === 'navigateTo' && getCurrentPages().length > 9) {
wx.redirectTo({ url });
} else {
wx[this.data.linkType]({ url });
}
}
},
},