mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
parent
e0335973c9
commit
f17e29309a
@ -1,13 +1,16 @@
|
|||||||
Component({
|
Component({
|
||||||
properties: {
|
properties: {
|
||||||
group: Object
|
group: Object,
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
onClick(event) {
|
onClick(event) {
|
||||||
wx.navigateTo({
|
const { url } = event.target.dataset;
|
||||||
url: event.target.dataset.url
|
if (getCurrentPages().length > 9) {
|
||||||
});
|
wx.redirectTo({ url });
|
||||||
}
|
} else {
|
||||||
}
|
wx.navigateTo({ url });
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user