refactor: 将枚举和常量从utils移动到constants

This commit is contained in:
xingyu4j
2025-09-04 18:28:13 +08:00
parent 37fba1474e
commit cf8745d844
7 changed files with 12 additions and 7 deletions

View File

@@ -5,8 +5,8 @@ import type { BpmFormApi } from '#/api/bpm/form';
import { ref, watch } from 'vue';
import { BpmModelFormType } from '@vben/constants';
import { CircleHelp } from '@vben/icons';
import { BpmModelFormType } from '@vben/utils';
import FormCreate from '@form-create/ant-design-vue';
import {

View File

@@ -3,7 +3,7 @@ import type { Ref } from 'vue';
import { computed, inject, nextTick, ref } from 'vue';
import { BpmModelType } from '@vben/utils';
import { BpmModelType } from '@vben/constants';
// TODO BPM 流程模型设计器 BpmModelEditor 待整合
import SimpleModelDesign from './simple-model-design.vue';