fix: 页面字段/接口调整

This commit is contained in:
TsMask
2025-02-20 10:47:23 +08:00
parent 814bae0b94
commit 485fa89833
85 changed files with 1133 additions and 1792 deletions

View File

@@ -81,7 +81,7 @@ function fnGetList() {
getPara5GFilee(),
listNeInfo({
pageNum: 1,
pageSize: 20,
pageSize: 100,
}),
]).then(resArr => {
// 已保存的配置
@@ -89,11 +89,9 @@ function fnGetList() {
state.from = resArr[0].data;
}
// 填充固定网元类型的ip
if (
resArr[1].code === RESULT_CODE_SUCCESS &&
Array.isArray(resArr[1].rows)
) {
for (const item of resArr[1].rows) {
if (resArr[1].code === RESULT_CODE_SUCCESS) {
const { rows } = resArr[1].data;
for (const item of rows) {
switch (item.neType) {
case 'OMC':
state.from.sbi.omc_ip = item.ip;