feat:【antd】【bpm】将 simple-model-design 迁移到 bpm components 下。

This commit is contained in:
YunaiV
2025-10-24 21:24:59 +08:00
parent 6f5a5ab3d4
commit 616dbf3b32
50 changed files with 13 additions and 14 deletions

View File

@@ -12,12 +12,12 @@ import {
Switch,
} from 'ant-design-vue';
import { convertTimeUnit } from '#/components/simple-process-design/components/nodes-config/utils';
import { convertTimeUnit } from '#/views/bpm/components/simple-process-design/components/nodes-config/utils';
import {
TIME_UNIT_TYPES,
TIMEOUT_HANDLER_TYPES,
TimeUnitType,
} from '#/components/simple-process-design/consts';
} from '#/views/bpm/components/simple-process-design/consts';
defineOptions({ name: 'ElementCustomConfig4BoundaryEventTimer' });
const props = defineProps({

View File

@@ -9,7 +9,7 @@
-->
<script lang="ts" setup>
import type { SystemUserApi } from '#/api/system/user';
import type { ButtonSetting } from '#/components/simple-process-design/consts';
import type { ButtonSetting } from '#/views/bpm/components/simple-process-design/consts';
import { inject, nextTick, onMounted, ref, toRaw, watch } from 'vue';
@@ -38,8 +38,8 @@ import {
OPERATION_BUTTON_NAME,
REJECT_HANDLER_TYPES,
RejectHandlerType,
} from '#/components/simple-process-design/consts';
import { useFormFieldsPermission } from '#/components/simple-process-design/helpers';
} from '#/views/bpm/components/simple-process-design/consts';
import { useFormFieldsPermission } from '#/views/bpm/components/simple-process-design/helpers';
defineOptions({ name: 'ElementCustomConfig4UserTask' });
const props = defineProps({

View File

@@ -16,7 +16,7 @@ import {
import {
APPROVE_METHODS,
ApproveMethodType,
} from '#/components/simple-process-design/consts';
} from '#/views/bpm/components/simple-process-design/consts';
defineOptions({ name: 'ElementMultiInstance' });

View File

@@ -40,8 +40,8 @@ import {
CandidateStrategy,
FieldPermissionType,
MULTI_LEVEL_DEPT,
} from '#/components/simple-process-design/consts';
import { useFormFieldsPermission } from '#/components/simple-process-design/helpers';
} from '#/views/bpm/components/simple-process-design/consts';
import { useFormFieldsPermission } from '#/views/bpm/components/simple-process-design/helpers';
import ProcessExpressionDialog from './ProcessExpressionDialog.vue';