Component({
properties: {},
data: {},
methods: {
gotopage({currentTarget: {dataset}}) {
const {url} = dataset;
wx.navigateTo({url})
}
});