import { Notification } from '@arco-design/web-vue'; import { IconLoading } from '@arco-design/web-vue/es/icon'; export function showExportNotification(name: string) { Notification.warning({ showIcon: false, closable: true, content: () => (

{`正在下载“${name}”,请稍后...`}

), duration: 3000, class: 'px-16px py-9px w-400px rounded-2px bg-#F0EDFF', }); }