diff --git a/src/api/work/work.ts b/src/api/work/work.ts index 981987a..d62846e 100644 --- a/src/api/work/work.ts +++ b/src/api/work/work.ts @@ -102,7 +102,8 @@ export async function getTaskDetailPictureList(params: PageParam & PictureSortPa taskname: item.fromtaskname, assignee: item.assignee, pictureid: item.pictureid, - imgurl: item.imgUrl, + imgurl: item.serverThumbnailUrl, + maxSimilarity: item.maxSimilarity, thumburl: item.ocrPicture?.serverThumbnailUrl || item.ocrPicture?.imgurl, iztrueorfalse: item.iztrueorfalse, states: item.states, diff --git a/src/views/worksheet/content/Content.vue b/src/views/worksheet/content/Content.vue index bcc339e..494707b 100644 --- a/src/views/worksheet/content/Content.vue +++ b/src/views/worksheet/content/Content.vue @@ -443,6 +443,7 @@ function previewHandler(event: MouseEvent) { +
@@ -549,7 +550,7 @@ function previewHandler(event: MouseEvent) { >图片大小 {{ (taskDetailInfo?.pictureInfo?.imgSize /1000).toFixed(2) }}KB{{ taskDetailInfo?.pictureInfo && (taskDetailInfo?.pictureInfo?.imgSize /1000).toFixed(2) }}KB
@@ -557,7 +558,7 @@ function previewHandler(event: MouseEvent) { >图片格式 {{ taskDetailInfo?.pictureInfo?.imgSpace }}{{ taskDetailInfo?.pictureInfo?.imgFormat }}
@@ -573,7 +574,7 @@ function previewHandler(event: MouseEvent) { >色彩空间 {{ taskDetailInfo?.pictureInfo?.imgMeasure }}{{ taskDetailInfo?.pictureInfo?.imgSpace }}
@@ -653,7 +654,7 @@ function previewHandler(event: MouseEvent) {
- {{ getPercent(item.pictureid) }} + {{ item?.maxSimilarity && Number(item?.maxSimilarity).toFixed(0) }}%
@@ -892,7 +893,7 @@ function previewHandler(event: MouseEvent) { .grid-item { box-sizing: border-box; border-radius: 8px; - padding: 9px 10px; + padding: 9px 5px; position: relative; .img-wrapper {