feat: 合并Gin_Vue

This commit is contained in:
TsMask
2023-10-16 17:12:24 +08:00
parent 771320a839
commit 743568861d
77 changed files with 734 additions and 1870 deletions

View File

@@ -9,7 +9,7 @@ import { parseObjLineToHump } from '@/utils/parse-utils';
export async function getMMLByUDM() {
// 发起请求
const result = await request({
url: `/databaseManagement/v1/elementType/omc_db/objectType/mml_subscriber`,
url: `/api/rest/databaseManagement/v1/elementType/omc_db/objectType/mml_subscriber`,
method: 'get',
params: {
SQL: `select * from mml_subscriber where ne_type = 'UDM'`,
@@ -37,7 +37,7 @@ export async function sendMMlByUDM(
) {
// 发起请求
const result = await request({
url: `/operationManagement/v1/elementType/UDM/objectType/mml?ne_id=${neId}`,
url: `/api/rest/operationManagement/v1/elementType/UDM/objectType/mml?ne_id=${neId}`,
method: 'post',
data: { mml: [cmdStr] },
});