提示弹窗分类总结
//半透明黑色 提示弹窗
uni.showLoading({
title: "登录中或者加载中",
mask: true
});
//隐藏
uni.hideLoading();
//提示弹窗 用在接口调取 黑色半透明
uni.showToast({
title: data.msg, //提示内容
image: "/static/img/warn.png", //提示图
duration: 2000 //显现时长
});
uni.showToast({
icon: "none", //不显示图标,此时 title 文本在小程序
最多可显示两行,App
仅支持单行显示
icon:"success", //显示成功图标,此时 title 文本最多显示 7 个汉字长度。默认值
icon:"loading", //显示加载图标,此时 title 文本最多显示 7 个汉字长度。
title: "请上传核验照片",
duration: 2000
});
uni.hideToast();
//带确定取消的提示弹窗
uni.showModal({
title: "提示",
content:"功能暂未开放",
success: res => {
if (res.confirm) { //确定操作
} else if (res.cancel) { //取消操作
console.log("用户点击取消");
}
}
});