|
|
|
@ -88,6 +88,7 @@ const sortBy: SimilarityPictureSortParam = {
|
|
|
|
|
orderType: 'desc',
|
|
|
|
|
orderName: 'similarityScore',
|
|
|
|
|
}
|
|
|
|
|
const huadong=ref(false)
|
|
|
|
|
const timer = ref()
|
|
|
|
|
const workStore = useWorkOrder()
|
|
|
|
|
const selectTask = ref<any>(null)
|
|
|
|
@ -649,6 +650,13 @@ function tishiokthree(){
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
function handleMouseEnter(){
|
|
|
|
|
huadong.value=true
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
function handleMouseLeave(){
|
|
|
|
|
huadong.value=false
|
|
|
|
|
}
|
|
|
|
|
/**
|
|
|
|
|
* 检查查重状态
|
|
|
|
|
*/
|
|
|
|
@ -736,13 +744,13 @@ defineExpose({
|
|
|
|
|
<n-spin :show="loading">
|
|
|
|
|
<div ref="el" class="scroll">
|
|
|
|
|
<!-- <div class="scroll"> -->
|
|
|
|
|
<div class="wrapper-detail">
|
|
|
|
|
<div class="wrapper-detail" :style=" isFullScreen?{height:'596px'}:{}">
|
|
|
|
|
<!-- 左侧大图 图片信息 -->
|
|
|
|
|
<div
|
|
|
|
|
class="left"
|
|
|
|
|
:style="{
|
|
|
|
|
'background-image': `url(${taskDetailInfo?.imgurl})`,
|
|
|
|
|
'flex': imgbigshow ? '0.65' : '0.98',
|
|
|
|
|
'flex':isFullScreen? imgbigshow ? '0.77' : '0.98':'0.65',
|
|
|
|
|
'height': imgbigshow ? ' 100%' : '80vh',
|
|
|
|
|
'background-size': imgbigshow ? 'auto 100%' : 'cover',
|
|
|
|
|
}"
|
|
|
|
@ -866,7 +874,7 @@ defineExpose({
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 缩放线 -->
|
|
|
|
|
<div
|
|
|
|
|
v-show="isFullScreen"
|
|
|
|
|
v-show="isFullScreen&&imgbigshow==false?true:isFullScreen&&huadong?true:false"
|
|
|
|
|
:style="{
|
|
|
|
|
position: 'absolute',
|
|
|
|
|
zIndex: 169,
|
|
|
|
@ -874,11 +882,13 @@ defineExpose({
|
|
|
|
|
right: imgbigshow ? '-23px' : '0',
|
|
|
|
|
marginTop: '5px',
|
|
|
|
|
width: '2px',
|
|
|
|
|
height: imgbigshow ? '340px' : '79vh',
|
|
|
|
|
height: imgbigshow ? '587px' : '79vh',
|
|
|
|
|
}"
|
|
|
|
|
/>
|
|
|
|
|
<div
|
|
|
|
|
v-show="isFullScreen"
|
|
|
|
|
@mouseenter="handleMouseEnter"
|
|
|
|
|
@mouseleave="handleMouseLeave"
|
|
|
|
|
v-show="isFullScreen&&imgbigshow==false?true:isFullScreen&&huadong?true:false"
|
|
|
|
|
class="aside-collapse-btn"
|
|
|
|
|
:style="{
|
|
|
|
|
position: 'absolute',
|
|
|
|
@ -896,7 +906,13 @@ defineExpose({
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<PictureInfo v-show="imgbigshow" :task-detail-info="taskDetailInfo" />
|
|
|
|
|
<PictureInfo
|
|
|
|
|
@mouseenter="handleMouseEnter"
|
|
|
|
|
@mouseleave="handleMouseLeave"
|
|
|
|
|
:style="{
|
|
|
|
|
'flex':isFullScreen? '0.24' : '0.35',
|
|
|
|
|
'padding-right': '0px'
|
|
|
|
|
}" v-show="imgbigshow" :task-detail-info="taskDetailInfo" />
|
|
|
|
|
</div>
|
|
|
|
|
<div
|
|
|
|
|
|
|
|
|
@ -1096,6 +1112,7 @@ defineExpose({
|
|
|
|
|
.scroll {
|
|
|
|
|
height: 100%;
|
|
|
|
|
overflow-y: scroll;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-header {
|
|
|
|
|