From cbb23429b8beed72b58cbb57f9b3c56a0fb2b5d2 Mon Sep 17 00:00:00 2001 From: 马宇豪 <978517621@qq.com> Date: 星期五, 09 五月 2025 13:31:26 +0800 Subject: [PATCH] 修改 --- src/views/analyse/identify/index.ts | 16 +++++++++++++++- 1 files changed, 15 insertions(+), 1 deletions(-) diff --git a/src/views/analyse/identify/index.ts b/src/views/analyse/identify/index.ts index 713bb9b..25faca1 100644 --- a/src/views/analyse/identify/index.ts +++ b/src/views/analyse/identify/index.ts @@ -1,5 +1,8 @@ declare interface IdentifyStateType { identifyData: Array<IdentifyType> + allData: Array<IdentifyType> + isAdmin: boolean + user: null | number searchQuery: { pageIndex: number, pageSize: number, @@ -74,7 +77,7 @@ sclCheckResult: string, planExecStatus?: number, evaluateMethod?: number, - factorQueryDTOList?: IdentifyType [], + factorQueryDTOList?: EvaluateType [], evaluateUser?: string, result?: number | null, identificationDesc: string @@ -84,8 +87,18 @@ id: number, name: string, } +declare interface file { + url: string; +} declare interface IdentifyDialogType { + fileList: Array<file>, + imgLimit: number, + uploadUrl: string, + isOverSize: boolean, + header:{} + dialogVisible: Boolean, + dialogImageUrl: string | null, title: string, method: null | number, evaluateMethod: null | number, @@ -124,6 +137,7 @@ sclCheckStandard: string, sclCheckUnstandard: string, sclCheckResult: string, + fileData: string }, identifyFormRules: { -- Gitblit v1.9.2