Admin
2022-07-08 cb3a40b47b5309fcb4d4b0d7e1ab94263bc415a7
src/views/specialWorkSystem/workApplyManagement/workApplyForm/components/highWorkForm.vue
@@ -72,16 +72,14 @@
   }
   export default defineComponent({
      name: 'highWorkForm',
      setup() {
      props:{
         hwForm: Object
      },
      setup(props) {
         const userInfo = useUserInfo()
         const { userInfos } = storeToRefs(userInfo);
         const state  = reactive<stateType>({});
         const hwForm = reactive({
            hwDepartment: '',
            hwApplyName: '',
            hwLevel: '',
            hwHeight: ''
         })
         const hwForm1 = reactive(props.hwForm)
         const ruleFormRef = ref<FormInstance>()
         const hwRules = reactive<FormRules>({
            hwDepartment:[{required: true,message: '此处不可为空',trigger: 'blur'}],
@@ -97,7 +95,7 @@
         };
         return {
            renderMenu,
            hwForm,
            hwForm1,
            ruleFormRef,
            hwRules,
            ...toRefs(state),