initProject

This commit is contained in:
2024-05-08 11:01:54 +08:00
commit e7cea71567
4078 changed files with 579425 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
// 显示居中通知对话框
function showCenterNotify(message, messageIcon) {
F.notify({
message: message,
messageIcon: messageIcon || '',
modal: true,
hideOnMaskClick: true,
header: false,
displayMilliseconds: 3000,
positionX: 'center',
positionY: 'center',
messageAlign: 'center',
minWidth: 200
});
}