InspectionFormPanel.vue 1.82 KB
<template>
  <BasicForm @register="registerForm" />
</template>
<script lang="ts">
  import { computed, defineComponent, ref, toRaw } from 'vue';
  import { BasicForm, useForm } from '/@/components/Form/index';
  import { useDrawerInner } from '/@/components/Drawer';
  import { dateUtil } from '/@/utils/dateUtil';
  import { FIELDS_INSPECTION_INFO } from '../tableData';
  import { getDisable } from '/@/utils/project';
  import { useOrderStoreWithOut } from '/@/store/modules/order';
  import { get } from 'lodash-es';
  import { useOrderInfo } from '/@/hooks/component/order';

  export default defineComponent({
    components: { BasicForm },

    props: {
      id: {
        type: String,
      },
    },
    emits: ['success'],
    setup(props, { emit }) {
      let fields = ref({});
      const orderStore = useOrderStoreWithOut();

      const { midCheckResult, endCheckResult } = useOrderInfo(orderStore);

      const schemas = computed(() => {
        const options = {
          midCheckResult,
          endCheckResult,
        };
        return FIELDS_INSPECTION_INFO.map((item) => {
          return {
            ...item,
            componentProps: {
              ...(item.component === 'Select' && { options: options[item.field] }),
              disabled: getDisable(get(fields.value, item.field), props.id),
            },
            colProps: {
              span: 24,
            },
          };
        });
      });

      const [registerForm, { setFieldsValue, getFieldsValue, resetFields }] = useForm({
        labelWidth: 120,
        schemas,
        showActionButtonGroup: false,
        actionColOptions: {
          span: 24,
        },
      });

      return {
        fields,
        schemas,
        registerForm,
        setFieldsValue,
        resetFields,
        getFieldsValue,
      };
    },
  });
</script>
../constant