-
@author 封裝 element-ui 彈框
-
@param text 文本內容 (不傳默認顯示 確定執行此操作嗎? )
-
@param type 彈框類型(不傳默認warning類型)
-
@param title 彈框標題(不傳默認顯示 提示 )
export function utilConfirm(text = '確定執行此操作嗎?', type = 'warning', title = '提示') {
return new Promise(resolve => {
MessageBox.confirm(text, title, {confirmButtonText: '確定',cancelButtonText: '取消',type: type
}).then(res => {resolve(res === 'confirm')}).catch(_ => false)
})
}