马宇豪
2024-11-05 1f26c30a8d1c5e3d9ab262b382284c8ea96f29b2
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 {