36 lines
999 B
TypeScript
36 lines
999 B
TypeScript
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;
|
|
}
|