【功能优化】仿钉钉流程设计优化

This commit is contained in:
jason
2024-10-29 10:52:46 +08:00
parent a43bca5785
commit c9b12c8b39
13 changed files with 1263 additions and 664 deletions

View File

@ -0,0 +1,19 @@
<template>
<ContentWrap :bodyStyle="{ padding: '20px 16px' }">
<SimpleProcessDesigner :model-id="modelId" @success="close" />
</ContentWrap>
</template>
<script setup lang="ts">
import { SimpleProcessDesigner } from '@/components/SimpleProcessDesignerV2/src/'
defineOptions({
name: 'SimpleModelDesign'
})
const router = useRouter() // 路由
const { query } = useRoute() // 路由的查询
const modelId = query.modelId as string
const close = () => {
router.push({ path: '/bpm/manager/model' })
}
</script>
<style lang="scss" scoped></style>