diff --git a/src/views/checkManage/plan/addModal.vue b/src/views/checkManage/plan/addModal.vue index bd36591..179c986 100644 --- a/src/views/checkManage/plan/addModal.vue +++ b/src/views/checkManage/plan/addModal.vue @@ -33,6 +33,17 @@ + + + + + + + @@ -51,6 +62,7 @@ planDate: '', station: null, monitorType: null, + ioPerson: null, }); //下拉框 const monitorTypeOptions = [ @@ -61,6 +73,14 @@ value: '半年度巡检', }, ]; + const ioPersonOptions = [ + { + value: '李华', + }, + { + value: '李明', + }, + ]; const stationOptions = ref([]); const showModal = async (type, id, projectId) => { visible.value = true; @@ -115,6 +135,7 @@ planDate: [{ required: true, message: '请选择' }], station: [{ required: true, message: '请选择' }], monitorType: [{ required: true, message: '请选择' }], + ioPerson: [{ required: true, message: '请选择' }], }; return { visible, @@ -124,6 +145,7 @@ handleOk, monitorTypeOptions, stationOptions, + ioPersonOptions, closeModal, formRef, rules,