- 图片名称
+ 任务ID:{{taskDetailInfo.taskname}}
- 拜访终端
+ 图片大小
+
+ {{ (taskDetailInfo?.pictureInfo?.imgSize /1000).toFixed(2) }}KB
+
+
+ 图片格式
+
+ {{ taskDetailInfo?.pictureInfo?.imgSpace }}
+
+
+ 图片尺寸
+
+ {{ taskDetailInfo?.pictureInfo?.imgMeasure }}
+
+
+ 色彩空间
- 拜访终端{{ taskDetailInfo?.pictureInfo?.imgMeasure }}
+
+ 提报人
+
+ {{ taskDetailInfo?.pictureInfo?.source || "-" }}
+
+
+ 创建时间
+
+ {{ taskDetailInfo?.pictureInfo && format(taskDetailInfo?.pictureInfo?.createTime, 'yyyy-MM-dd HH:mm:ss')}}
+
+
+ 提报时间
+
+ {{ taskDetailInfo?.uploadTime && format(taskDetailInfo?.pictureInfo?.uploadTime, 'yyyy-MM-dd HH:mm:ss') || '-'}}
+
{{ fieldMap[key] }}
{{ propertys[key] }}
@@ -557,13 +611,13 @@ function previewHandler(event: MouseEvent) {
>({{ totalCount }})
-
+
按时间排序
相似度排序
@@ -582,7 +636,7 @@ function previewHandler(event: MouseEvent) {
>
@@ -744,7 +798,7 @@ function previewHandler(event: MouseEvent) {
right: 2%;
bottom: 2%;
width: 136px;
- height: 119px;
+ height: 60px;
opacity: 0.44;
background: rgba(216, 216, 216, 0.4);
border-radius: 7px;
@@ -813,15 +867,7 @@ function previewHandler(event: MouseEvent) {
}
.top {
- &::after {
- position: absolute;
- left: 72px;
- top: 4px;
- content: "";
- width: 1px;
- height: 12px;
- background: #979797;
- }
+
}
.property-content {
diff --git a/src/views/worksheet/index.vue b/src/views/worksheet/index.vue
index f7891d5..22109af 100644
--- a/src/views/worksheet/index.vue
+++ b/src/views/worksheet/index.vue
@@ -1,11 +1,11 @@
-
+
diff --git a/types/api.d.ts b/types/api.d.ts
index 5fa6349..7a6c2b5 100644
--- a/types/api.d.ts
+++ b/types/api.d.ts
@@ -7,6 +7,11 @@ export interface PictureSortParam {
orderbyname?: 'asc' | 'desc'
orderbyvalue?: 'pictureResult' | 'fromuptime'
}
+export interface SimilarityPictureSortParam {
+ checkDuplicateId?: string
+ orderType?: 'asc' | 'desc'
+ orderName?: 'similarityScore' | 'createdate'
+}
export interface FilterSearchParam {
search_searchname?: {
diff --git a/types/workorder.d.ts b/types/workorder.d.ts
index aa77a85..36781d1 100644
--- a/types/workorder.d.ts
+++ b/types/workorder.d.ts
@@ -1,5 +1,6 @@
// 任务包
export interface PackageListItem {
+ checkDuplicateId: string
id: string
packagename: string
pictureno: number
@@ -11,6 +12,7 @@ export interface PackageListItem {
// 任务包状态
export interface OrderState {
+ name: string
activeId: string
currentIndex: number
packageList: PackageListItem[]