浏览代码

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

chenhao 2 年之前
父节点
当前提交
448117cdd0
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      src/modules/analysis/monitoring/index.vue
  2. 1 1
      src/modules/analysis/statistics/index.vue

+ 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>
         )
       },