amis icon indicating copy to clipboard operation
amis copied to clipboard

如何自定义confirm,控制事件继续往下处理

Open rumunanfeng opened this issue 6 months ago • 1 comments

实现场景:

image

存在的问题:

我想要自定义confirm弹框,但是发现,只回传了content和title,因为按钮点击是异步的,我要如何控制事件继续往下流转?

当前方案:

my.confirm({
      title: '温馨提示',
      content: '您是否想查询快递单号:\n1234567890',
      confirmButtonText: '马上查询',
      cancelButtonText: '暂不需要',
      success: (result) => {
        // 如何让事件继续?
      },
    });

rumunanfeng avatar Aug 27 '24 07:08 rumunanfeng