fix:修改沉浸模式样式 #171

Merged
zhaohui merged 1 commits from fix/change_task into test 1 year ago

@ -760,6 +760,7 @@ function sortHandler(orderby: "similarityScore" | "createdate") {
isFullScreen
? {
height: '596px',
}
: {}
"
@ -803,13 +804,15 @@ function sortHandler(orderby: "similarityScore" | "createdate") {
? imgbigshow
? {
position: 'relative',
flex: 0.75,
//width: '70vw',
flex: 1,
// flex: 0.75,
'background-image': `url(${taskDetailInfo?.ocrPicture?.imgurl})`,
}
: {
height: '92vh',
flex: 1,
//flex: 1,
'background-image': `url(${taskDetailInfo?.ocrPicture?.imgurl})`,
}
: {
@ -820,7 +823,7 @@ function sortHandler(orderby: "similarityScore" | "createdate") {
@mouseleave="leaveTaskHandler"
@click="previewHandler"
>
<div v-show="overTask" class="action">
<div v-show="overTask" class="action" style="z-index: 100">
<SvgIcon
style="cursor: pointer"
name="t1"
@ -959,13 +962,15 @@ function sortHandler(orderby: "similarityScore" | "createdate") {
class="right"
:style="
isFullScreen
? {
flex: '0.25',
? {flex: 0.3,
// flex: 0,
//width: '30vw',
borderLeft: '2px solid #507AFD',
position: 'relative',
borderRadius: 0,
height:'596px'
}
: {}
: { flex: 0.5}
"
>
<div
@ -986,8 +991,8 @@ function sortHandler(orderby: "similarityScore" | "createdate") {
/>
</div>
<n-scrollbar v-if="totalCount > 0" style="max-height: 100%">
<div class="right-card">
<div v-show="!isFullScreen" class="header">
<div class="right-card">
<div v-show="!isFullScreen" class="header">
<span>相似图片({{ totalCount }})</span>
<SvgIcon
style="margin-right: 20px; cursor: pointer"
@ -1073,12 +1078,12 @@ function sortHandler(orderby: "similarityScore" | "createdate") {
</div>
</div>
<n-scrollbar v-else style="max-height: 100%">
<n-ellipsis
<div
:style="{ fontSize: '22px', fontWeight: 500, color: '#0D0B22' }"
>
{{ taskDetailInfo.fromtaskname }}
</n-ellipsis>
<div class="tags">
</div>
<div class="tags">
<div
v-if="taskDetailInfo?.userapprove?.statshis == 1"
class="tag tag-submiting"

@ -42,10 +42,10 @@ function getrowvalue(row) {
:class="item[0].blue ? 'blue' : ''"
@click="getrowvalue(item[0])"
>
<span v-show="item[0].label == '定位信息'">
<span :style="item[0].label == '定位信息'?{cursor:'pointer'}:{}" v-show="item[0].label == '定位信息'">
<SvgIcon class="icon" size="16" name="lctname"
/></span>
{{ item[0].value }}
<span :style="item[0].label == '定位信息'?{cursor:'pointer'}:{}"> {{ item[0].value }}</span>
</td>
<th v-if="item && item.length > 1">
{{ item[1].label }}
@ -55,10 +55,10 @@ function getrowvalue(row) {
:class="item[1].blue ? 'blue' : ''"
@click="getrowvalue(item[1])"
>
<span v-show="item[1].label == '定位信息'">
<span :style="item[0].label == '定位信息'?{cursor:'pointer'}:{}" v-show="item[1].label == '定位信息'">
<SvgIcon class="icon" size="16" name="lctname" />
</span>
{{ item[1].value }}
<span :style="item[1].label == '定位信息'?{cursor:'pointer'}:{}"> {{ item[1].value }}</span>
</td>
</tr>
</table>

@ -33,7 +33,7 @@ function setAsideItemName(text) {
top:0
}
:deep(.ip_box){
z-index: 105;
z-index: 50;
}
.main {
display: flex;

Loading…
Cancel
Save