首页 > 建站教程 > APP开发,混合APP >  uni-app常用提示框正文

uni-app常用提示框

uni-app常用的提示框,包括土司提示、加载框、模态框等:

1、土司提示
提交表单的时候,如果提交成功
uni.showToast({
    title: '提交成功',
    duration: 2000
});


2、去掉图标,只显示文字的土司提示
uni.showToast({
    title: '请填写员工工号',
    icon:'none',
    duration: 2000
});



3、加载框
uni.showLoading({
    title: '加载中'
});
//隐藏加载框
setTimeout(function () {
    uni.hideLoading();
}, 2000);

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