From e65a116f1ff1d9d99a093f76a9b02a6d27bfb35e Mon Sep 17 00:00:00 2001 From: 马宇豪 <978517621@qq.com> Date: 星期二, 29 四月 2025 08:47:50 +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