1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-19 00:09:16 +08:00

fix: 消息弹框样式调整 (#1563)

This commit is contained in:
ssongliu 2023-07-06 16:06:21 +08:00 committed by GitHub
parent d36dfc5490
commit 71107fa42f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,7 @@ export const MsgSuccess = (message) => {
ElMessage.success({
message: message,
type: 'success',
showClose: false,
showClose: true,
duration: 3000,
});
};
@ -13,7 +13,7 @@ export const MsgInfo = (message) => {
ElMessage.info({
message: message,
type: 'info',
showClose: false,
showClose: true,
duration: 3000,
});
};