action-sheet.js 387 B

123456789101112131415
  1. Page({
  2. showActionSheet() {
  3. my.showActionSheet({
  4. title: '支付宝-ActionSheet',
  5. items: ['菜单一', '菜单二', '菜单三'],
  6. cancelButtonText: '取消好了',
  7. success: (res) => {
  8. const btn = res.index === -1 ? '取消' : '第' + res.index + '个';
  9. my.alert({
  10. title: `你点了${btn}按钮`
  11. });
  12. },
  13. });
  14. },
  15. });