wx.showLoading()

显示加载框,需要主动加 wx.hideLoading() 才能隐藏

样式:

wx.showLoading() 加载框

 

 示例代码:

wx.showLoading({
  title: '加载中',
})

setTimeout(function () {
  wx.hideLoading()
}, 2000)

相关文章:

  • 2022-12-23
  • 2021-11-18
  • 2021-09-12
  • 2021-09-12
  • 2021-05-19
  • 2022-12-23
  • 2022-12-23
  • 2021-09-20
猜你喜欢
  • 2021-07-05
  • 2022-12-23
  • 2021-07-11
  • 2022-12-23
  • 2022-12-23
  • 2021-07-23
  • 2022-12-23
相关资源
相似解决方案