41 lines
885 B
Vue
41 lines
885 B
Vue
<template>
|
|
<ContentWrap :bodyStyle="{ padding: '20px 16px' }">
|
|
<SimpleProcessDesigner
|
|
:model-id="modelId"
|
|
:model-key="modelKey"
|
|
:model-name="modelName"
|
|
@success="handleSuccess"
|
|
:start-user-ids="startUserIds"
|
|
:start-dept-ids="startDeptIds"
|
|
ref="designerRef"
|
|
/>
|
|
</ContentWrap>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import { SimpleProcessDesigner } from '@/components/SimpleProcessDesignerV2/src/'
|
|
|
|
defineOptions({
|
|
name: 'SimpleModelDesign'
|
|
})
|
|
|
|
defineProps<{
|
|
modelId?: string
|
|
modelKey?: string
|
|
modelName?: string
|
|
startUserIds?: number[]
|
|
startDeptIds?: number[]
|
|
}>()
|
|
|
|
const emit = defineEmits(['success'])
|
|
const designerRef = ref()
|
|
|
|
// 修改成功回调
|
|
const handleSuccess = (data?: any) => {
|
|
console.info('handleSuccess', data)
|
|
if (data) {
|
|
emit('success', data)
|
|
}
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped></style>
|