| | |
| | | |
| | | import { computed, ref } from 'vue'; |
| | | |
| | | import { useVbenModal } from '../../../../../../packages/effects/common-ui/src'; |
| | | import { useVbenModal } from '@vben/common-ui'; |
| | | |
| | | import { message } from 'ant-design-vue'; |
| | | |
| | |
| | | const formData = ref<MesMdItemTypeApi.ItemType>(); |
| | | const getTitle = computed(() => { |
| | | return formData.value?.id |
| | | ? $t('ui.actionTitle.edit', ['物料分类']) |
| | | : $t('ui.actionTitle.create', ['物料分类']); |
| | | ? $t('ui.actionTitle.edit', ['品种分类']) |
| | | : $t('ui.actionTitle.create', ['品种分类']); |
| | | }); |
| | | |
| | | const [Form, formApi] = useVbenForm({ |