記錄一下開(kāi)發(fā)經(jīng)常會(huì)用到的幾種提示框
前端代碼里最常用的摇锋,以免忘記了诡挂。
官方參考文檔:https://uniapp.dcloud.io/api/ui/prompt?id=showtoast
1:成功提示
提交表單的時(shí)候,如果提交成功
uni.showToast({
title: '提交成功',
duration: 2000
});
2:加載框
uni.showLoading({
title: '加載中'
});
setTimeout(function () {
uni.hideLoading();
}, 2000);
3:去掉圖標(biāo)匀们,只顯示文字
uni.showToast({
title: '請(qǐng)?zhí)顚?xiě)員工工號(hào)',
icon:'none',
duration: 2000
});
4:模態(tài)彈窗
uni.showModal({
title: '提示',
content: '這是一個(gè)模態(tài)彈窗',
success: function (res) {
if (res.confirm) {
console.log('用戶點(diǎn)擊確定');
} else if (res.cancel) {
console.log('用戶點(diǎn)擊取消');
}
}
});