mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 02:12:43 +08:00
parent
e0335973c9
commit
f17e29309a
@ -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 });
|
||||
}
|
||||
},
|
||||
},
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user