Merge branch 'main-v2' into lichang
This commit is contained in:
@@ -11,7 +11,7 @@ VITE_APP_NAME = "Core Network OMC"
|
|||||||
VITE_APP_CODE = "OMC"
|
VITE_APP_CODE = "OMC"
|
||||||
|
|
||||||
# 应用版本
|
# 应用版本
|
||||||
VITE_APP_VERSION = "2.250613"
|
VITE_APP_VERSION = "2.2506.4"
|
||||||
|
|
||||||
# 接口基础URL地址-不带/后缀
|
# 接口基础URL地址-不带/后缀
|
||||||
VITE_API_BASE_URL = "/omc-api"
|
VITE_API_BASE_URL = "/omc-api"
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ VITE_APP_NAME = "Core Network OMC"
|
|||||||
VITE_APP_CODE = "OMC"
|
VITE_APP_CODE = "OMC"
|
||||||
|
|
||||||
# 应用版本
|
# 应用版本
|
||||||
VITE_APP_VERSION = "2.250613"
|
VITE_APP_VERSION = "2.2506.4"
|
||||||
|
|
||||||
# 接口基础URL地址-不带/后缀
|
# 接口基础URL地址-不带/后缀
|
||||||
VITE_API_BASE_URL = "/omc-api"
|
VITE_API_BASE_URL = "/omc-api"
|
||||||
|
|||||||
@@ -1,5 +1,10 @@
|
|||||||
# 版本发布日志
|
# 版本发布日志
|
||||||
|
|
||||||
|
## 2.2506.4-20250627
|
||||||
|
|
||||||
|
- 修复 UDM-IMS数据批量新增/批量删除命令调整
|
||||||
|
- 优化 AMF/MME对应的IMEI白名单模板去除index
|
||||||
|
|
||||||
## 2.2506.3-20250620
|
## 2.2506.3-20250620
|
||||||
|
|
||||||
- 新增 UDM签约cnType新增可选1仅5G/2仅4G
|
- 新增 UDM签约cnType新增可选1仅5G/2仅4G
|
||||||
|
|||||||
@@ -221,6 +221,13 @@ function fnGetNeConfig() {
|
|||||||
if (res.code === RESULT_CODE_SUCCESS && Array.isArray(res.data)) {
|
if (res.code === RESULT_CODE_SUCCESS && Array.isArray(res.data)) {
|
||||||
const arr = [];
|
const arr = [];
|
||||||
for (const item of res.data) {
|
for (const item of res.data) {
|
||||||
|
// 是否可见
|
||||||
|
if (!item['visible']) {
|
||||||
|
item['visible'] = 'public';
|
||||||
|
} else if (item['visible'] == 'hide') {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
// 权限控制
|
||||||
let paramPerms: string[] = [];
|
let paramPerms: string[] = [];
|
||||||
if (item.paramPerms) {
|
if (item.paramPerms) {
|
||||||
paramPerms = item.paramPerms.split(',');
|
paramPerms = item.paramPerms.split(',');
|
||||||
|
|||||||
Reference in New Issue
Block a user