소스 검색

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)}>
           <ElButton type="primary" link onClick={() => viewMarkDetail(row)}>
-            {row.markerName?.split('-')?.[0]}
+            {row.markerName}
           </ElButton>
           </ElButton>
         )
         )
       },
       },

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

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