diff --git a/src/views/ne/neHost/index.vue b/src/views/ne/neHost/index.vue index 5f18c92d..7d540b8b 100644 --- a/src/views/ne/neHost/index.vue +++ b/src/views/ne/neHost/index.vue @@ -316,7 +316,7 @@ function fnModalOk() { .then(res => { if (res.code === RESULT_CODE_SUCCESS) { message.success({ - content: t('views.ne.neHost.ok'), + content: t('common.operateOk'), duration: 2, }); fnModalCancel(); @@ -361,7 +361,7 @@ function fnRecordDelete(hostId: string) { hide(); if (res.code === RESULT_CODE_SUCCESS) { message.success({ - content: t('views.ne.neHost.ok'), + content: t('common.operateOk'), duration: 2, }); fnGetList(); diff --git a/src/views/ne/neHostCommand/index.vue b/src/views/ne/neHostCommand/index.vue index 2587094a..7da3ae2f 100644 --- a/src/views/ne/neHostCommand/index.vue +++ b/src/views/ne/neHostCommand/index.vue @@ -270,7 +270,7 @@ function fnModalOk() { .then(res => { if (res.code === RESULT_CODE_SUCCESS) { message.success({ - content: t('views.ne.neHostCmd.ok'), + content: t('common.operateOk'), duration: 2, }); fnModalCancel(); @@ -315,7 +315,7 @@ function fnRecordDelete(cmdId: string) { hide(); if (res.code === RESULT_CODE_SUCCESS) { message.success({ - content: t('views.ne.neHostCmd.ok'), + content: t('common.operateOk'), duration: 2, }); fnGetList();