小程序弹窗的几种形式

以下是小程序中常用的集中弹窗形式:
1.类似layer.confirm('111',function(){})效果
wx.showModal({
      title: '',
      content: '暂无分析数据',
      showCancel: false
    });
}

2.类似layer.msg效果
wx.showToast({
     title: '登录成功',
     icon: 'success',
     duration: 1000
})

3.loading显示框:showLoading与hideLoading配对使用
wx.showLoading({
  title: '加载中。。。',
})
4.隐藏显示的loading
setTimeout(function () {
  wx.hideLoading()
}, 2000)

更多用法与属性参考微信小程序API

猜你喜欢

转载自www.cnblogs.com/lvxisha/p/11438089.html
今日推荐