diff --git a/ALOps_sys_fe/alops-ui/src/views/inMonitoring/devicesState/history.vue b/ALOps_sys_fe/alops-ui/src/views/inMonitoring/devicesState/history.vue
index 91e92cb0..f3687bd7 100644
--- a/ALOps_sys_fe/alops-ui/src/views/inMonitoring/devicesState/history.vue
+++ b/ALOps_sys_fe/alops-ui/src/views/inMonitoring/devicesState/history.vue
@@ -10,17 +10,17 @@
>
- {{ scope.row.occurTime || '--' }}
+ {{ scope.row.occurTime !== undefined && scope.row.occurTime !== null ? scope.row.occurTime : '--' }}
- {{ scope.row.level || '--' }}
+ {{ scope.row.level !== undefined && scope.row.level !== null ? scope.row.level : '--' }}
- {{ scope.row.message || '--' }}
+ {{ scope.row.message !== undefined && scope.row.message !== null ? scope.row.message : '--' }}
@@ -39,7 +39,7 @@
- {{ scope.row.handler || '--' }}
+ {{ scope.row.handler !== undefined && scope.row.handler !== null ? scope.row.handler : '--' }}
diff --git a/ALOps_sys_fe/alops-ui/src/views/inMonitoring/devicesState/interface.vue b/ALOps_sys_fe/alops-ui/src/views/inMonitoring/devicesState/interface.vue
index 50cd32bb..cb7d24dc 100644
--- a/ALOps_sys_fe/alops-ui/src/views/inMonitoring/devicesState/interface.vue
+++ b/ALOps_sys_fe/alops-ui/src/views/inMonitoring/devicesState/interface.vue
@@ -10,12 +10,12 @@
>
- {{ parseTime(scope.row.gatherTime) || '--' }}
+ {{ parseTime(scope.row.gatherTime) !== undefined && parseTime(scope.row.gatherTime) !== null ? parseTime(scope.row.gatherTime) : '--' }}
- {{ scope.row.id || '--' }}
+ {{ scope.row.id !== undefined && scope.row.id !== null ? scope.row.id : '--' }}
@@ -25,37 +25,37 @@
- {{ scope.row.inFlow || '--' }}
+ {{ scope.row.inFlow !== undefined && scope.row.inFlow !== null ? scope.row.inFlow : '--' }}
- {{ scope.row.outFlow || '--' }}
+ {{ scope.row.outFlow !== undefined && scope.row.outFlow !== null ? scope.row.outFlow : '--' }}
- {{ scope.row.inBandwidth || '--' }}
+ {{ scope.row.inBandwidth !== undefined && scope.row.inBandwidth !== null ? scope.row.inBandwidth : '--' }}
- {{ scope.row.outBandwidth || '--' }}
+ {{ scope.row.outBandwidth !== undefined && scope.row.outBandwidth !== null ? scope.row.outBandwidth : '--' }}
- {{ scope.row.lossRate || '--' }}
+ {{ scope.row.lossRate !== undefined && scope.row.lossRate !== null ? scope.row.lossRate : '--' }}
- {{ scope.row.errorRate || '--' }}
+ {{ scope.row.errorRate !== undefined && scope.row.errorRate !== null ? scope.row.errorRate : '--' }}
- {{ scope.row.rate || '--' }}
+ {{ scope.row.rate !== undefined && scope.row.rate !== null ? scope.row.rate : '--' }}
diff --git a/ALOps_sys_fe/alops-ui/src/views/inMonitoring/devicesState/routing.vue b/ALOps_sys_fe/alops-ui/src/views/inMonitoring/devicesState/routing.vue
index 4e1af7dd..70c5191c 100644
--- a/ALOps_sys_fe/alops-ui/src/views/inMonitoring/devicesState/routing.vue
+++ b/ALOps_sys_fe/alops-ui/src/views/inMonitoring/devicesState/routing.vue
@@ -10,17 +10,17 @@
>
- {{ scope.row.desAddress || '--' }}
+ {{ scope.row.desAddress !== undefined && scope.row.desAddress !== null ? scope.row.desAddress : '--' }}
- {{ scope.row.subnetMask || '--' }}
+ {{ scope.row.subnetMask !== undefined && scope.row.subnetMask !== null ? scope.row.subnetMask : '--' }}
- {{ scope.row.nextHop || '--' }}
+ {{ scope.row.nextHop !== undefined && scope.row.nextHop !== null ? scope.row.nextHop : '--' }}
diff --git a/ALOps_sys_fe/alops-ui/src/views/inMonitoring/devicesState/vlan.vue b/ALOps_sys_fe/alops-ui/src/views/inMonitoring/devicesState/vlan.vue
index d9dcc453..29de0312 100644
--- a/ALOps_sys_fe/alops-ui/src/views/inMonitoring/devicesState/vlan.vue
+++ b/ALOps_sys_fe/alops-ui/src/views/inMonitoring/devicesState/vlan.vue
@@ -10,17 +10,17 @@
>
- {{ scope.row.mainId || '--' }}
+ {{ scope.row.mainId !== undefined && scope.row.mainId !== null ? scope.row.mainId : '--' }}
- {{ scope.row.ipAddress || '--' }}
+ {{ scope.row.ipAddress !== undefined && scope.row.ipAddress !== null ? scope.row.ipAddress : '--' }}
- {{ scope.row.subnetMask || '--' }}
+ {{ scope.row.subnetMask !== undefined && scope.row.subnetMask !== null ? scope.row.subnetMask : '--' }}