Uni-app中几种常用的提示框
Posted 苏格拉的底
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Uni-app中几种常用的提示框相关的知识,希望对你有一定的参考价值。
1、成功提示框
提交表单的时候,提交成功弹出的提示框。
uni.showToast(
title: '提交成功',
duration: 2000
);
2、加载框
uni.showLoading(
title: '加载中'
);
setTimeout(function ()
uni.hideLoading();
, 2000);
3、去掉图标,只显示文字提示框
uni.showToast(
title: '请填写员工工号',
icon:'none',
duration: 2000
);
4、模态弹窗
uni.showModal(
title: '提示',
content: '这是一个模态弹窗',
success: function (res)
if (res.confirm)
console.log('用户点击确定');
else if (res.cancel)
console.log('用户点击取消');
);
以上是关于Uni-app中几种常用的提示框的主要内容,如果未能解决你的问题,请参考以下文章