From 1f26c30a8d1c5e3d9ab262b382284c8ea96f29b2 Mon Sep 17 00:00:00 2001 From: 马宇豪 <978517621@qq.com> Date: 星期二, 05 十一月 2024 15:47:17 +0800 Subject: [PATCH] 修改密码 --- src/views/analyse/assessApply/index.ts | 36 ++++++++++++++++++++++++++++-------- 1 files changed, 28 insertions(+), 8 deletions(-) diff --git a/src/views/analyse/assessApply/index.ts b/src/views/analyse/assessApply/index.ts index 7948ebb..8e28d84 100644 --- a/src/views/analyse/assessApply/index.ts +++ b/src/views/analyse/assessApply/index.ts @@ -6,26 +6,46 @@ title: string disabled: boolean reportDialogVisible: boolean - reportForm: object + reportForm: { + id: null | number, + experimentName: string, + experimentType: null | number, + personUser: string, + personUserId: null | number, + personUserPhone: string, + safePersonUserId: null | number, + safePersonUser: string, + safePersonUserPhone: string, + dep: string, + experimentSite: [], + experimentDesc: string, + emergencyMeasure: string, + assessPerson: string, + safeRiskAnalysis: string, + assessLevel: null | number, + riskSource: [], + riskSourceType: [], + description: string, + person: [] + } reportFormRules: object allPersonList: Array<AllPersonListType> systemPersonList: Array<AllPersonListType> - allRoomList: Array<RoomType> + allRoomList: Array<RoomType>, + experimentTypeList: Array<Type> } declare interface DangerSourceType { disabled: boolean dangerList: Array<DangerListType> - classifyList: Array<Type> - wasteStorageList: Array<Type> } declare interface DangerListType { - dangerFactor: string - feature: string - amount: null | number - info: string + riskSource: string + riskCharacteristic: string + number: null | number + description: string } declare interface AssessApplyDialogStateType { -- Gitblit v1.9.2