From 9ae197211e60bf3e482a15cb42594c0604ed6baa Mon Sep 17 00:00:00 2001
From: lizijiee <562949697@qq.com>
Date: Wed, 27 Mar 2024 23:53:59 +0800
Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BF=AE=E5=A4=8D=E6=97=B6=E9=97=B4str?=
=?UTF-8?q?ing=E7=B1=BB=E5=9E=8B=E6=8A=A5=E9=94=99=20=E8=BD=AC=E6=88=90num?=
=?UTF-8?q?ber?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/worksheet/content/Content.vue | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/views/worksheet/content/Content.vue b/src/views/worksheet/content/Content.vue
index e824cd2..139614f 100644
--- a/src/views/worksheet/content/Content.vue
+++ b/src/views/worksheet/content/Content.vue
@@ -586,12 +586,12 @@ function previewHandler(event: MouseEvent) {
- {{ item.photoDateTimestamp ? formatToDateHMS(item.photoDateTimestamp || 0) : ''
+ {{ item.photoDateTimestamp ? formatToDateHMS(Number(item.photoDateTimestamp) || 0) : '-'
}}
- {{ item.submitDateTimestamp ? formatToDateHMS(item.submitDateTimestamp || 0) : ''
+ {{ item.submitDateTimestamp ? formatToDateHMS(Number(item.submitDateTimestamp) || 0) : '-'
}}
@@ -970,11 +970,11 @@ function previewHandler(event: MouseEvent) {
.time-wrapper {
position: absolute;
- bottom: 0;
- width: 100%;
+ bottom: 9px;
+ width: calc(100% - 11px);
height: 58px;
background: linear-gradient(180deg, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.71) 100%);
- border-radius: 0px 8px 8px 0px;
+ border-radius: 8px;
display: flex;
flex-direction: column;
justify-content: center;
@@ -1048,7 +1048,7 @@ function previewHandler(event: MouseEvent) {
.action {
position: absolute;
z-index: 5;
- left: 10px;
+ left: 4px;
top: 9px;
width: 230px;
height: 130px;