From d0d78b9fbe144326f136ee048bb59d314413032e Mon Sep 17 00:00:00 2001
From: 马宇豪 <978517621@qq.com>
Date: Tue, 27 May 2025 08:45:29 +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