1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
| import { ElNotification, ElMessage, ElMessageBox } from 'element-plus'
export const info = (msgInfo: string) => { ElMessage({ type: 'info', showClose: true, dangerouslyUseHTMLString: true, message: msgInfo, }) }
export const success = (msgInfo: string) => { ElMessage({ type: 'success', showClose: true, dangerouslyUseHTMLString: true, message: msgInfo, }) }
export const error = (msgInfo: string) => { ElMessage({ type: 'error', showClose: true, dangerouslyUseHTMLString: true, message: msgInfo, }) }
export const warn = (msgInfo: string) => { ElMessage({ type: 'warning', showClose: true, dangerouslyUseHTMLString: true, message: msgInfo, }) }
export const alertBox = (msg: string, btnName: string, type: any, title?: string,) => { let confirmName = btnName == '确定' ? '确定' : '是' return ElMessageBox.alert(msg, title || '提示', { type: type || 'warning', confirmButtonText: confirmName, buttonSize: "default", dangerouslyUseHTMLString: true });
}
export const confirmBox = (msg: string, btnName: string, type: any, title?: string,) => { let confirmName = btnName == '确定' ? '确定' : '是' let cancelsName = btnName == '确定' ? '取消' : '否' return ElMessageBox.confirm(msg, title || '提示', { type: type || 'warning', confirmButtonText: confirmName, cancelButtonText: cancelsName, buttonSize: "default", closeOnClickModal: false, closeOnPressEscape: false, dangerouslyUseHTMLString: true }) }
|