当前位置:   article > 正文

uniapp各种常用的提示框

uniapp各种常用的提示框

1.uni.showModal

uni.showModal({
	title: '提示', //标题
	content: `${res.data.msg}`, //提示内容
	showCancel: false //不显示取消按钮
})
  • 1
  • 2
  • 3
  • 4
  • 5

2.uni.showToast

uni.showToast({
	icon: 'none',
	duration: 3000,
	title: `${res.data.msg}`
	});
  • 1
  • 2
  • 3
  • 4
  • 5

3.u-toast

		<u-toast ref="uToast"></u-toast>
  • 1
this.$refs.uToast.show({
	type: 'error',
	message: '请稍后再试'
});
  • 1
  • 2
  • 3
  • 4
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/429267
推荐阅读
相关标签
  

闽ICP备14008679号