feat: 新增网元操作相关接口

This commit is contained in:
TsMask
2024-03-26 21:01:39 +08:00
parent c2e95f607b
commit 9faf02a1a6
3 changed files with 30 additions and 3 deletions

View File

@@ -66,13 +66,13 @@ export function delNeSoftware(softwareIds: string | number) {
}
/**
* 网元软件包安装
* 网元软件包安装检查
* @param data 网元对象
* @returns object
*/
export function installNeSoftware(data: Record<string, any>) {
export function installCheckNeSoftware(data: Record<string, any>) {
return request({
url: `/ne/software/install`,
url: `/ne/software/installCheck`,
method: 'post',
data: data,
});