mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 10:22:44 +08:00
17 lines
276 B
JavaScript
17 lines
276 B
JavaScript
Component({
|
|
properties: {
|
|
group: Object,
|
|
},
|
|
|
|
methods: {
|
|
onClick(event) {
|
|
const { url } = event.target.dataset;
|
|
if (getCurrentPages().length > 9) {
|
|
wx.redirectTo({ url });
|
|
} else {
|
|
wx.navigateTo({ url });
|
|
}
|
|
},
|
|
},
|
|
});
|