2025-07-17 17:23:40 +08:00
|
|
|
import { Notification } from '@arco-design/web-vue';
|
|
|
|
|
import { IconLoading } from '@arco-design/web-vue/es/icon';
|
|
|
|
|
|
2025-07-18 14:43:19 +08:00
|
|
|
export function showExportNotification(label: string, id: '') {
|
2025-07-17 17:23:40 +08:00
|
|
|
Notification.warning({
|
2025-07-18 14:43:19 +08:00
|
|
|
id,
|
2025-07-17 17:23:40 +08:00
|
|
|
showIcon: false,
|
|
|
|
|
closable: true,
|
|
|
|
|
content: () => (
|
|
|
|
|
<div class="flex items-center">
|
|
|
|
|
<IconLoading size={16} class="color-#6D4CFE mr-8px" />
|
2025-07-18 14:43:19 +08:00
|
|
|
<p class="text-14px lh-22px font-400 color-#211F24">{label}</p>
|
2025-07-17 17:23:40 +08:00
|
|
|
</div>
|
|
|
|
|
),
|
|
|
|
|
duration: 3000,
|
|
|
|
|
class: 'px-16px py-9px w-400px rounded-2px bg-#F0EDFF',
|
|
|
|
|
});
|
|
|
|
|
}
|