Merge branch 'main' into shen

pull/1/head
Dragon 1 year ago
commit 381f174250

@ -586,12 +586,12 @@ function previewHandler(event: MouseEvent) {
<div class="time-wrapper"> <div class="time-wrapper">
<div class="time"> <div class="time">
<SvgIcon color="#FFF" size="16" name="camera" /> <SvgIcon color="#FFF" size="16" name="camera" />
<span class="current-time">{{ item.photoDateTimestamp ? formatToDateHMS(item.photoDateTimestamp || 0) : '' <span class="current-time" >{{ item.photoDateTimestamp ? formatToDateHMS(Number(item.photoDateTimestamp) || 0) : '-'
}}</span> }}</span>
</div> </div>
<div class="time"> <div class="time">
<SvgIcon color="#FFF" size="16" name="save" /> <SvgIcon color="#FFF" size="16" name="save" />
<span class="current-time">{{ item.submitDateTimestamp ? formatToDateHMS(item.submitDateTimestamp || 0) : '' <span class="current-time">{{ item.submitDateTimestamp ? formatToDateHMS(Number(item.submitDateTimestamp) || 0) : '-'
}}</span> }}</span>
</div> </div>
</div> </div>
@ -970,11 +970,11 @@ function previewHandler(event: MouseEvent) {
.time-wrapper { .time-wrapper {
position: absolute; position: absolute;
bottom: 0; bottom: 9px;
width: 100%; width: calc(100% - 11px);
height: 58px; height: 58px;
background: linear-gradient(180deg, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.71) 100%); 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; display: flex;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
@ -1048,7 +1048,7 @@ function previewHandler(event: MouseEvent) {
.action { .action {
position: absolute; position: absolute;
z-index: 5; z-index: 5;
left: 10px; left: 4px;
top: 9px; top: 9px;
width: 230px; width: 230px;
height: 130px; height: 130px;

Loading…
Cancel
Save