mc.showActionSheet(Object object)

显示操作菜单。

Object object 参数

属性 类型 默认值 必填 说明
itemList [String] 按钮的文字数组,数组长度最大为 6
itemColor String #000000 按钮的文字颜色
success Function 接口调用成功的回调函数
fail Function 接口调用失败的回调函数
complete Function 接口调用结束的回调函数(调用成功、失败都会执行)

Object.success(Object res) 回调函数 | 属性 | 类型 | 说明 | | :------- | :----- | :------------------------------------------ | | tapIndex | Number | 用户点击的按钮序号,从上到下的顺序,从0开始 |

示例代码:

mc.showActionSheet({
    itemList: ['1', '2', '3'],
    success(res) {
      mc.showToast({
        title: '选中了' + res.tapIndex,
        icon: 'none'
      });
    },
    fail(res) {

    }
  })

results matching ""

    No results matching ""

    results matching ""

      No results matching ""