diff --git a/src/views/system/email/index.vue b/src/views/system/email/index.vue
index 830ee4d9..6c418b54 100644
--- a/src/views/system/email/index.vue
+++ b/src/views/system/email/index.vue
@@ -50,7 +50,7 @@
{{Array.isArray(scope.row.RecipientList) && scope.row.RecipientList.length > 0
? scope.row.RecipientList.filter(item => item.RecipientTypeEnum === 0).map(item =>
- item.RecipientName).join(", ") : ''
+ item.RecipientAddress).join(", ") : ''
}}
@@ -59,7 +59,7 @@
{{Array.isArray(scope.row.RecipientList) && scope.row.RecipientList.length > 0
? scope.row.RecipientList.filter(item => item.RecipientTypeEnum === 1).map(item =>
- item.RecipientName).join(", ") : ''
+ item.RecipientAddress).join(", ") : ''
}}