diff --git a/LTEMvcApp/Views/Home/NetworkConfig.cshtml b/LTEMvcApp/Views/Home/NetworkConfig.cshtml index facbb31..ba6a0b0 100644 --- a/LTEMvcApp/Views/Home/NetworkConfig.cshtml +++ b/LTEMvcApp/Views/Home/NetworkConfig.cshtml @@ -41,29 +41,39 @@
-
-
- +
+
+ +
+
-
- +
+ +
+
-
-
- +
+
+ +
+
-
- +
+ +
+
-
-
- +
+
+ +
+
@@ -154,6 +164,29 @@ function renderConfigTable(data) { `; + // 子表格 + if (item.coreOrImsConfigs && item.coreOrImsConfigs.length > 0) { + html += ` + + + + + + + + + + `; + item.coreOrImsConfigs.forEach(sub => { + html += ` + + + + + `; + }); + html += `
IndexPLMNCoreNetworkConfigIMSConfig
${sub.index ?? ''}${sub.plmn ?? ''}${sub.coreNetworkConfig ?? ''}${sub.imsConfig ?? ''}
`; + } }); } html += '';