Merge pull request 'fix:蒙层高度优化,拖拽功能问题修复' (#125) from fix/changeimgback into test

Reviewed-on: #125
pull/133/head
赵辉 1 year ago
commit fd1ec733ff

@ -648,6 +648,7 @@ function getrowValue(e) {
:src="taskDetailInfo?.ocrPicture?.imgurl" :src="taskDetailInfo?.ocrPicture?.imgurl"
/> />
</div> </div>
<div class="leftback"></div>
</div> </div>
<div class="right"> <div class="right">
<n-scrollbar v-if="totalCount > 0" style="max-height: 100%"> <n-scrollbar v-if="totalCount > 0" style="max-height: 100%">
@ -674,16 +675,10 @@ function getrowValue(e) {
" "
> >
<div <div
draggable="true"
class="img-wrapper" class="img-wrapper"
:style="{ :style="{
'background-image': `url(${item.serverThumbnailUrl})`, 'background-image': `url(${item.serverThumbnailUrl})`,
}" }"
@dragend="
(event) => {
handleDragEnd(event, item);
}
"
/> />
<div class="small-mark" /> <div class="small-mark" />
<div class="check"> <div class="check">
@ -981,7 +976,7 @@ function getrowValue(e) {
.big-mark { .big-mark {
width: 100%; width: 100%;
height: 151px; height: 210px;
background: linear-gradient( background: linear-gradient(
180deg, 180deg,
rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 0%,
@ -1040,10 +1035,6 @@ function getrowValue(e) {
z-index: 3; z-index: 3;
left: 16px; left: 16px;
bottom: 16px; bottom: 16px;
padding-left: 10px;
width: 195px;
background: rgba(216, 216, 216, 0.4);
border-radius: 7px;
.time-item { .time-item {
display: flex; display: flex;
align-items: center; align-items: center;
@ -1093,6 +1084,18 @@ function getrowValue(e) {
height: 129px; height: 129px;
} }
} }
/* .leftback {
position: absolute;
width: 100%;
height: 151px;
bottom: 0;
background: linear-gradient(
180deg,
rgba(0, 0, 0, 0) 0%,
rgba(0, 0, 0, 0) 29%,
rgba(3, 0, 0, 0.73)
);
}*/
} }
.right { .right {
@ -1159,10 +1162,7 @@ function getrowValue(e) {
z-index: 3; z-index: 3;
left: 3px; left: 3px;
bottom: 3px; bottom: 3px;
width: 98%;
background: rgba(216, 216, 216, 0.4);
border-radius: 7px;
.time-item { .time-item {
display: flex; display: flex;
align-items: center; align-items: center;

Loading…
Cancel
Save