ProfitFormPanel.vue 1.84 KB
<template>
  <BasicForm @register="registerForm" />
</template>
<script lang="ts">
  import { computed, defineComponent, reactive, ref, toRaw } from 'vue';
  import { BasicForm, FormActionType, useForm } from '/@/components/Form/index';
  import { orderCreate, orderUpdate } from '/@/api/project/order';
  import { dateUtil } from '/@/utils/dateUtil';
  import { FIELDS_PROFIT_INFO } from '../tableData';
  import { getDisable } from '/@/utils/project';
  import { get } from 'lodash-es';

  export default defineComponent({
    components: { BasicForm },

    props: {
      detailData: {
        type: Object,
      },
      onGoCheckDetail: {
        type: Function,
      },
      id: {
        type: String,
      },
    },
    emits: ['success'],
    setup(props, { emit }) {
      console.log('%c [ props ]-29', 'font-size:13px; background:pink; color:#bf2c9f;', props);
      let fields = reactive({ profitAnalysisInfo: {} });

      const schemas = computed(() => {
        return FIELDS_PROFIT_INFO.map((item) => {
          console.log(
            '%c [  ]-31',
            'font-size:13px; background:pink; color:#bf2c9f;',
            get(fields, `${item.field}`),
            getDisable(get(fields, `${item.field}`), props.id),
          );
          return {
            ...item,
            componentProps: {
              ...item.componentProps,
              disabled: getDisable(get(fields, `${item.field}`), props.id),
            },
            colProps: {
              span: 24,
            },
          };
        });
      });

      const [registerForm, { setFieldsValue, getFieldsValue, reload }] = useForm({
        labelWidth: 120,
        schemas,
        showActionButtonGroup: false,
        actionColOptions: {
          span: 24,
        },
      });
      return { fields, schemas, registerForm, getFieldsValue, setFieldsValue };
    },
  });
</script>