只有弹窗
uni.showToast({
title: '标题',
duration: 2000
});
不会自己关的弹窗
//原!神!!启动!!!!噢噢说错了,弹窗~启动
uni.showLoading({
title: '加载中'
});
uni.hideLoading(); //关闭上面的原批
有确定 / 取消按钮
uni.showModal({
title: '提示',
content: '这是一个模态弹窗',
success: function (res) {
if (res.confirm) {
console.log('用户点击确定');
} else if (res.cancel) {
console.log('用户点击取消');
}
}
});
从底部向上弹出操作菜单
uni.showActionSheet({
itemList: ['A', 'B', 'C'],
success: function (res) {
console.log('选中了第' + (res.tapIndex + 1) + '个按钮');
},
fail: function (res) {
console.log(res.errMsg);
}
});