|
|
@ -1,7 +1,6 @@
|
|
|
|
<script lang="ts" setup>
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import { audit } from '@/api/task/task'
|
|
|
|
import { audit, dubiousfileyd } from '@/api/task/task'
|
|
|
|
import {
|
|
|
|
import {
|
|
|
|
dubiousfileyd,
|
|
|
|
|
|
|
|
getPictureSimilarityList,
|
|
|
|
getPictureSimilarityList,
|
|
|
|
getTaskDetailInfo,
|
|
|
|
getTaskDetailInfo,
|
|
|
|
} from '@/api/work/work'
|
|
|
|
} from '@/api/work/work'
|
|
|
@ -16,7 +15,7 @@ import { useInfiniteScroll } from '@vueuse/core'
|
|
|
|
import { format } from 'date-fns'
|
|
|
|
import { format } from 'date-fns'
|
|
|
|
import imagesloaded from 'imagesloaded'
|
|
|
|
import imagesloaded from 'imagesloaded'
|
|
|
|
import { clone, cloneDeep, debounce, pickBy } from 'lodash-es'
|
|
|
|
import { clone, cloneDeep, debounce, pickBy } from 'lodash-es'
|
|
|
|
import { useDialog, useMessage, useModal } from 'naive-ui'
|
|
|
|
import { useDialog, useMessage } from 'naive-ui'
|
|
|
|
import {
|
|
|
|
import {
|
|
|
|
computed,
|
|
|
|
computed,
|
|
|
|
onMounted,
|
|
|
|
onMounted,
|
|
|
@ -540,7 +539,10 @@ function handleRejectdubiousfileyd(pictureid) {
|
|
|
|
positiveText: '确定',
|
|
|
|
positiveText: '确定',
|
|
|
|
negativeText: '取消',
|
|
|
|
negativeText: '取消',
|
|
|
|
onPositiveClick: () => {
|
|
|
|
onPositiveClick: () => {
|
|
|
|
dubiousfileyd(pictureid).then(() => {
|
|
|
|
dubiousfileyd({ pictureid }).then(({ code }) => {
|
|
|
|
|
|
|
|
if (code === 'OK')
|
|
|
|
|
|
|
|
message.success('加入成功')
|
|
|
|
|
|
|
|
|
|
|
|
refreshHandler()
|
|
|
|
refreshHandler()
|
|
|
|
const packageid = workStore.getActiveId
|
|
|
|
const packageid = workStore.getActiveId
|
|
|
|
if (isEmpty(packageid)) {
|
|
|
|
if (isEmpty(packageid)) {
|
|
|
|