diff --git a/src/views/task/content/Content.vue b/src/views/task/content/Content.vue
index 16aa056..7b79462 100644
--- a/src/views/task/content/Content.vue
+++ b/src/views/task/content/Content.vue
@@ -887,7 +887,7 @@ function nodrage(){
- {{ taskDetailInfo?.ocrPicture?.photoDateTimestamp ?? "-" }}
+ {{ taskDetailInfo?.ocrPicture?.photoDateTimestamp ?? "- -" }}
@@ -895,7 +895,7 @@ function nodrage(){
{{
taskDetailInfo?.ocrPicture?.submitDateTimestamp
? formatToDateHMS(Number(taskDetailInfo.ocrPicture.submitDateTimestamp))
- : "-"
+ : "- -"
}}
diff --git a/src/views/worksheet/content/Content.vue b/src/views/worksheet/content/Content.vue
index e2db64f..5111831 100644
--- a/src/views/worksheet/content/Content.vue
+++ b/src/views/worksheet/content/Content.vue
@@ -869,7 +869,7 @@ defineExpose({
{{
item.submitDateTimestamp
? formatToDateHMS(Number(item.submitDateTimestamp) || 0)
- : "-"
+ : "- -"
}}