From 4696a0be1e0235e4a9e5077c3f42e038da8c6809 Mon Sep 17 00:00:00 2001 From: zhang <zc857179121@qq.com> Date: 星期四, 14 八月 2025 16:30:37 +0800 Subject: [PATCH] 1 --- zy-acs-flow/src/page/components/ImportModal.jsx | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/zy-acs-flow/src/page/components/ImportModal.jsx b/zy-acs-flow/src/page/components/ImportModal.jsx index 2344d49..76e7713 100644 --- a/zy-acs-flow/src/page/components/ImportModal.jsx +++ b/zy-acs-flow/src/page/components/ImportModal.jsx @@ -132,9 +132,10 @@ {importer.state === 'complete' && ( <Alert severity="success"> - Contacts import complete. Imported{' '} - {importer.importCount} contacts, with{' '} - {importer.errorCount} errors + {translate('common.action.import.result', { + success: importer.importCount, + error: importer.errorCount + })} </Alert> )} @@ -148,7 +149,7 @@ label="common.action.import.download" color="info" to={importTemp} - download={'crm_contacts_sample.csv'} + download={'import_template.csv'} /> } > -- Gitblit v1.9.1