底部下拉菜单栏(action-sheet)怎么跳转啊
insert() {
wx.showActionSheet({
itemList: [‘单选题’, ‘多选题’,‘填空题’],
itemColor: ‘#007aff’,
success(res) {
console.log(res.tapIndex);
if (res.tapIndex === 0) {
} else if (res.tapIndex === 1) {
}
}
})
},
- 就是这个底部下拉菜单栏,想弄个跳转,但是我好想没什么思路,可以帮忙解决下吗