action-sheet.js 374 B

1234567891011121314151617
  1. Page({
  2. actionSheetTap() {
  3. const items = ['A', 'B', 'C'];
  4. my.showActionSheet({
  5. title: '选择',
  6. cancelButtonText: 'Cancel',
  7. items,
  8. success({ index }) {
  9. if (index > -1) {
  10. my.alert({ title: `你选中了 ${items[index]}` });
  11. } else {
  12. my.alert({ title: '你取消了' });
  13. }
  14. },
  15. });
  16. },
  17. });