This commit is contained in:
2023-11-16 16:46:35 +08:00
5 changed files with 6 additions and 6 deletions

View File

@@ -13,7 +13,7 @@ export async function getMMLByNE(neType: string) {
url: `/api/rest/databaseManagement/v1/elementType/omc_db/objectType/mml_system`, url: `/api/rest/databaseManagement/v1/elementType/omc_db/objectType/mml_system`,
method: 'get', method: 'get',
params: { params: {
SQL: `select * from mml_system where ne_type = '${neType}'`, SQL: `select * from mml_system where ne_type = '${neType}' and status = 'Active'`,
}, },
}); });
// 解析数据 // 解析数据

View File

@@ -12,7 +12,7 @@ export async function getMMLByOMC() {
url: `/api/rest/databaseManagement/v1/elementType/omc_db/objectType/mml_command`, url: `/api/rest/databaseManagement/v1/elementType/omc_db/objectType/mml_command`,
method: 'get', method: 'get',
params: { params: {
SQL: `select * from mml_command where ne_type = 'OMC'`, SQL: `select * from mml_command where ne_type = 'OMC' and status = 'Active'`,
}, },
}); });
// 解析数据 // 解析数据

View File

@@ -12,7 +12,7 @@ export async function getMMLByUDM() {
url: `/api/rest/databaseManagement/v1/elementType/omc_db/objectType/mml_subscriber`, url: `/api/rest/databaseManagement/v1/elementType/omc_db/objectType/mml_subscriber`,
method: 'get', method: 'get',
params: { params: {
SQL: `select * from mml_subscriber where ne_type = 'UDM'`, SQL: `select * from mml_subscriber where ne_type = 'UDM' and status = 'Active'`,
}, },
}); });
// 解析数据 // 解析数据

View File

@@ -15,7 +15,7 @@ export default {
errorFields: '请正确填写 {num} 处必填信息!', errorFields: '请正确填写 {num} 处必填信息!',
tablePaginationTotal: '总共 {total} 条', tablePaginationTotal: '总共 {total} 条',
noData: "暂无数据", noData: "暂无数据",
zebraL:'表格斑马纹', zebra:'表格斑马纹',
ok: '确定', ok: '确定',
cancel: '取消', cancel: '取消',
close: '关闭', close: '关闭',

View File

@@ -487,7 +487,7 @@ onMounted(() => {
<a-input <a-input
v-model:value="queryParams.configName" v-model:value="queryParams.configName"
allow-clear allow-clear
:placeholder="t('views.system.config.configNamePlease')" :placeholder="t('common.ipnutPlease')"
></a-input> ></a-input>
</a-form-item> </a-form-item>
</a-col> </a-col>
@@ -499,7 +499,7 @@ onMounted(() => {
<a-input <a-input
v-model:value="queryParams.configKey" v-model:value="queryParams.configKey"
allow-clear allow-clear
:placeholder="t('views.system.config.configKeyPlease')" :placeholder="t('common.ipnutPlease')"
></a-input> ></a-input>
</a-form-item> </a-form-item>
</a-col> </a-col>