Merge pull request 'fix:图片审核样式调整' (#303) from fix/change_task into test

Reviewed-on: #303
pull/307/head
yaoshuli 1 year ago
commit 60b32495be

@ -805,13 +805,14 @@ defineExpose({
:src="taskDetailInfo?.imgurl" :src="taskDetailInfo?.imgurl"
/> />
</div> </div>
<!-- 操作 --> <!-- 操作 -->
<div <div
v-show="overTask && overTask.id === taskDetailInfo.id" v-show="overTask && overTask.id === taskDetailInfo.id"
class="action" class="action"
:style="taskDetailInfo?.historyStates === 2 || taskDetailInfo?.historyStates === 3 ? 'background:transparent' : ''" :style="taskDetailInfo?.historyStates === 2 || taskDetailInfo?.historyStates === 3 ? 'background:transparent' : ''"
@click.stop="hideAction" @click.stop="hideAction"
> >
<div class="iconlist">
<SvgIcon <SvgIcon
v-if="[1].includes(taskDetailInfo.historyStates)" v-if="[1].includes(taskDetailInfo.historyStates)"
style="cursor: pointer;" style="cursor: pointer;"
@ -831,6 +832,7 @@ defineExpose({
@click.stop="handleRejectdubiousfileyd(taskDetailInfo.id)" @click.stop="handleRejectdubiousfileyd(taskDetailInfo.id)"
/> />
</div> </div>
</div>
<!-- 缩放线 --> <!-- 缩放线 -->
<div <div
v-show="isFullScreen" v-show="isFullScreen"
@ -1541,7 +1543,17 @@ defineExpose({
} }
} }
} }
.iconlist{
position: absolute;
z-index: 3;
width: 60%;
height: 100%;
display: flex;
border-radius: 8px;
align-items: center;
display: flex;
justify-content: space-evenly;
}
::v-deep(.n-divider:not(.n-divider--vertical)) { ::v-deep(.n-divider:not(.n-divider--vertical)) {
margin-top: 12px; margin-top: 12px;
margin-bottom: 12px; margin-bottom: 12px;

Loading…
Cancel
Save