小程序的各种弹窗

时间:2025-04-02 17:05:51

1、纯文本提示

   ({
      title: '纯文字弹窗',
      icon: 'none',    //如果要纯文本,不要icon,将值设为'none'
      duration: 2000     
    })  

2、取消确认提示

 ({
      title: 'confirm的弹窗',
      content: '确认要删除该项吗?',
      success: function (res) {
        if () {  
          ('点击确认回调')
        } else {   
          ('点击取消回调')
        }
      }
    })

3、成功提示

({
      title: '成功提示弹窗',
      icon: '',     //默认值是success,就算没有icon这个值,就算有其他值最终也显示success
      duration: 2000,      //停留时间
    })

4、自定义图标弹窗

 ({
      title: '自定义图标弹窗',
      image: '../../static/image/',  //image的优先级会高于icon
      duration: 2000     
    })

5、加载中提示

({
      title:'加载中...'
    });

6、带蒙层的弹窗

({
      title: '带蒙层的弹窗',     
      duration: 2000,    
      mask:true    //是否有透明蒙层,默认为false 
                   //如果有透明蒙层,弹窗的期间不能点击文档内容 
    })

7、有列表弹窗

({
      itemList: ['A', 'B', 'C'],
      success: function (res) {
        (res);
      }
    })

隐藏 ()
()