+
+
+ {{ item?.photoDateTimestamp ?
+ formatToDateHMS(Number(item.photoDateTimestamp)) : '-' }}
+
{{ item.submitDateTimestamp ?
@@ -769,9 +774,12 @@ async function refreshHandler(filtersearchId?: any) {
}
.time {
position: absolute;
+ width: 182px;
+ padding-left: 10px;
z-index: 3;
- left: 32px;
- bottom: 32px;
+ left: 16px;
+ bottom: 16px;
+ background: linear-gradient(180deg,rgba(6,0,0,0.01),rgba(0, 0, 0, 0.44) 100%);
.time-item {
display: flex;
diff --git a/src/views/home/content/Content.vue b/src/views/home/content/Content.vue
index 5e5de99..4b840f0 100644
--- a/src/views/home/content/Content.vue
+++ b/src/views/home/content/Content.vue
@@ -525,7 +525,8 @@ function previewHandler(index: number, event: MouseEvent) {
event.stopImmediatePropagation();
event.stopPropagation();
if (imageRef.value?.[index] && (imageRef.value[index] as any).src)
- (imageRef.value?.[index] as any).mergedOnClick();
+ // (imageRef.value?.[index] as any).mergedOnClick();
+ (imageRef.value?.[index] as any).click();
}
const timer = ref();