diff --git a/web/src/views/testdata/fileSynchronization/index.vue b/web/src/views/testdata/fileSynchronization/index.vue
index 5537bed..a970331 100644
--- a/web/src/views/testdata/fileSynchronization/index.vue
+++ b/web/src/views/testdata/fileSynchronization/index.vue
@@ -1119,7 +1119,7 @@ const tabs = ref(1)
:class="data.station == '0' ? 'custom-tree-node' : (data.station == '1' ? 'custom-tree-node1' : (data.station == '2' ? 'custom-tree-node2' : 'custom-tree-node3'))">
{{ data.fileName }}({{ data.isFile == 'FOLDER' ? data.children.length :
- data.fileSize + 'MB' }})
+ data.fileSize + 'KB' }})
@@ -1154,7 +1154,7 @@ const tabs = ref(1)
{{ data.fileName }}({{ data.isFile == 'FOLDER' ?
data.children.length :
- data.fileSize + 'MB' }})
+ data.fileSize + 'KB' }})
@@ -1203,7 +1203,7 @@ const tabs = ref(1)
- {{ scope.row.fileSize + 'MB' }}
+ {{ scope.row.fileSize + 'KB' }}
--
@@ -1244,7 +1244,7 @@ const tabs = ref(1)
- {{ scope.row.fileSize + 'MB' }}
+ {{ scope.row.fileSize + 'KB' }}
--
@@ -1288,7 +1288,7 @@ const tabs = ref(1)
- {{ scope.row.fileSize + 'MB' }}
+ {{ scope.row.fileSize + 'KB' }}
--