Browse Source

feat: 监控页面接口字段markerName调整

chenhao 2 years ago
parent
commit
448117cdd0

+ 1 - 1
src/modules/analysis/monitoring/index.vue

@@ -239,7 +239,7 @@ const getColumns = (
           '全体'
         ) : (
           <ElButton type="primary" link onClick={() => viewMarkDetail(row)}>
-            {row.markerName?.split('-')?.[0]}
+            {row.markerName}
           </ElButton>
         )
       },

+ 1 - 1
src/modules/analysis/statistics/index.vue

@@ -212,7 +212,7 @@ const getColumns = (
           '全体'
         ) : (
           <ElButton type="primary" link onClick={() => viewMarkDetail(row)}>
-            {row.markerName?.split('-')?.[0]}
+            {row.markerName}
           </ElButton>
         )
       },