diff --git a/src/api/configManage/configParam.ts b/src/api/configManage/configParam.ts deleted file mode 100644 index 494176cb..00000000 --- a/src/api/configManage/configParam.ts +++ /dev/null @@ -1,35 +0,0 @@ -import { - RESULT_CODE_ERROR, - RESULT_CODE_SUCCESS, - RESULT_MSG_ERROR, -} from '@/constants/result-constants'; -import { language, request } from '@/plugins/http-fetch'; - -/** - * 更新网元配置重新载入 - * @param neType 网元类型 - * @param neId 网元ID - * @returns - */ -export async function updateNeConfigReload(neType: string, neId: string) { - // 发起请求 - const result = await request({ - url: `/api/rest/operationManagement/v1/elementType/${neType}/objectType/mml?ne_id=${neId}`, - method: 'POST', - data: { mml: ['reload'] }, - timeout: 180_000, - }); - // 解析数据 - if (result.code === RESULT_CODE_SUCCESS && Array.isArray(result.data.data)) { - const v = result.data.data[0]; - const str = v.toLowerCase(); - if (str.indexOf('ok') !== -1) { - delete result.data; - } else if (str.indexOf('success') !== -1) { - delete result.data; - } else { - return { code: RESULT_CODE_ERROR, msg: RESULT_MSG_ERROR[language] }; - } - } - return result; -} diff --git a/src/api/tool/mml.ts b/src/api/tool/mml.ts new file mode 100644 index 00000000..5c7e38c1 --- /dev/null +++ b/src/api/tool/mml.ts @@ -0,0 +1,16 @@ +import { request } from '@/plugins/http-fetch'; + +// 更新网元配置重新载入 +export function updateNeConfigReload(neType: string, neId: string) { + return request({ + url: '/tool/mml/command', + method: 'POST', + data: { + neType: neType, + neId: neId, + type: 'General', + command: ['reload'], + }, + timeout: 180_000, + }); +} diff --git a/src/views/ne/neInfo/hooks/useNeOptions.ts b/src/views/ne/neInfo/hooks/useNeOptions.ts index 66bbeb27..c1c7a443 100644 --- a/src/views/ne/neInfo/hooks/useNeOptions.ts +++ b/src/views/ne/neInfo/hooks/useNeOptions.ts @@ -2,7 +2,7 @@ import { RESULT_CODE_SUCCESS } from '@/constants/result-constants'; import { Modal, message } from 'ant-design-vue/es'; import useI18n from '@/hooks/useI18n'; import { useRouter } from 'vue-router'; -import { updateNeConfigReload } from '@/api/configManage/configParam'; +import { updateNeConfigReload } from '@/api/tool/mml'; import { serviceNeAction } from '@/api/ne/neInfo'; import useMaskStore from '@/store/modules/mask'; diff --git a/src/views/ne/neInfo/index.vue b/src/views/ne/neInfo/index.vue index 3bada583..82461775 100644 --- a/src/views/ne/neInfo/index.vue +++ b/src/views/ne/neInfo/index.vue @@ -588,12 +588,7 @@ onMounted(() => { {{ t('views.ne.common.stop') }} - + {{ t('views.ne.common.reload') }}