action-sheet.js 313 B

1234567891011121314151617
  1. Page({
  2. onShareAppMessage() {
  3. return {
  4. title: '操作菜单',
  5. path: 'page/API/pages/action-sheet/action-sheet'
  6. }
  7. },
  8. actionSheetTap() {
  9. wx.showActionSheet({
  10. itemList: ['item1', 'item2', 'item3', 'item4'],
  11. success(e) {
  12. console.log(e.tapIndex)
  13. }
  14. })
  15. }
  16. })