26 lines
534 B
TypeScript
26 lines
534 B
TypeScript
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,
|
|
});
|
|
}
|
|
|
|
// MMML日志列表
|
|
export function mmlLogList(query: Record<string, any>) {
|
|
return request({
|
|
url: '/tool/mml/log/list',
|
|
method: 'GET',
|
|
params: query,
|
|
});
|
|
}
|