From 481ef6edd48a404fe4bd2e1043236ab364a84887 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A4=9A=E5=95=A6C=E6=A2=A6?= <15709267061@163.com> Date: Sat, 21 Jun 2025 15:38:38 +0800 Subject: [PATCH] update --- src/api/system/index.js | 7 ++++++ src/components/XImage.vue | 3 +++ src/components/XSquareCarouselImage.vue | 12 +++++++++-- src/components/XUpload.vue | 2 +- src/hooks/useTableQuery.js | 10 +++++++++ .../components/CollectMaterials.vue | 4 +++- .../taskDetails/components/MyBackfill.vue | 20 ++++++++++++------ .../taskDetails/components/QuickOperation.vue | 11 ++++++++-- .../components/ReviewCommunication.vue | 2 +- .../taskDetails/components/TaskDetails.vue | 3 ++- src/pages/taskDetails/index.vue | 10 ++++----- src/static/icons/icon-wrapper.png | Bin 0 -> 203 bytes src/static/icons/水印_预览.png | Bin 0 -> 12773 bytes 13 files changed, 64 insertions(+), 20 deletions(-) create mode 100644 src/static/icons/icon-wrapper.png create mode 100644 src/static/icons/水印_预览.png diff --git a/src/api/system/index.js b/src/api/system/index.js index 5f7be92..568b841 100644 --- a/src/api/system/index.js +++ b/src/api/system/index.js @@ -383,6 +383,13 @@ const system = { data: data }); }, + confirmTask: async (data) => { + return request({ + method: MethodsENUM.POST, + url: "/task/confirmTask", + data: data + }); + }, } export default system; diff --git a/src/components/XImage.vue b/src/components/XImage.vue index d5d0d1e..051bbda 100644 --- a/src/components/XImage.vue +++ b/src/components/XImage.vue @@ -1,5 +1,6 @@