uniapp的几种弹框

1、提交表单的时候,提交表单成功

uni.showToast({
	title: '提交成功',
	duration: 2000
});

uniapp的几种弹框_第1张图片

 

2、加载框

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

setTimeout(function () {
	uni.hideLoading();
}, 2000);

uniapp的几种弹框_第2张图片

3、去掉图标,只显示文件提示框

uniapp的几种弹框_第3张图片 

4、静态 模态框

uni.showModal({
	title: '提示',
	content: '这是一个模态弹窗',
	success: function (res) {
		if (res.confirm) {
			console.log('用户点击确定');
		} else if (res.cancel) {
			console.log('用户点击取消');
		}
	}
});

uniapp的几种弹框_第4张图片

 

你可能感兴趣的:(uni-app,前端,javascript)