fix: 优化Simple设计器接口调用逻辑与去除loading效果

pull/683/MERGE
GoldenZqqq 2025-01-13 11:10:53 +08:00
parent 8855b77770
commit b3a97b0889
1 changed files with 45 additions and 17 deletions

View File

@ -1,5 +1,5 @@
<template>
<div v-loading="loading" class="overflow-auto">
<div class="overflow-auto">
<SimpleProcessModel
ref="simpleProcessModelRef"
v-if="processNodeTree"
@ -56,7 +56,7 @@ const props = defineProps({
required: false
},
//
startUserIds : {
startUserIds: {
type: Array,
required: false
},
@ -75,6 +75,7 @@ const userOptions = ref<UserApi.UserVO[]>([]) // 用户列表
const deptOptions = ref<DeptApi.DeptVO[]>([]) //
const deptTreeOptions = ref()
const userGroupOptions = ref<UserGroupApi.UserGroupVO[]>([]) //
const isDataInitialized = ref(false) //
//
const currentValue = ref<SimpleFlowNode | undefined>()
@ -221,9 +222,32 @@ const validateNode = (node: SimpleFlowNode | undefined, errorNodes: SimpleFlowNo
}
}
onMounted(async () => {
//
const initializeData = async () => {
if (isDataInitialized.value) {
return
}
try {
loading.value = true
//
const [roleList, postList, userList, deptList, userGroupList] = await Promise.all([
RoleApi.getSimpleRoleList(),
PostApi.getSimplePostList(),
UserApi.getSimpleUserList(),
DeptApi.getSimpleDeptList(),
UserGroupApi.getUserGroupSimpleList()
])
//
roleOptions.value = roleList
postOptions.value = postList
userOptions.value = userList
deptOptions.value = deptList
deptTreeOptions.value = handleTree(deptList as DeptApi.DeptVO[], 'id')
userGroupOptions.value = userGroupList
//
if (props.modelId) {
const bpmnModel = await getModel(props.modelId)
@ -234,21 +258,7 @@ onMounted(async () => {
formFields.value = bpmnForm?.fields
}
}
}
//
roleOptions.value = await RoleApi.getSimpleRoleList()
//
postOptions.value = await PostApi.getSimplePostList()
//
userOptions.value = await UserApi.getSimpleUserList()
//
deptOptions.value = await DeptApi.getSimpleDeptList()
deptTreeOptions.value = handleTree(deptOptions.value as DeptApi.DeptVO[], 'id')
//
userGroupOptions.value = await UserGroupApi.getUserGroupSimpleList()
//
if (props.modelId) {
// SIMPLE
const result = await getBpmSimpleModel(props.modelId)
if (result) {
@ -261,9 +271,27 @@ onMounted(async () => {
} else {
updateModel()
}
isDataInitialized.value = true
} catch (error) {
console.error('初始化数据失败:', error)
} finally {
loading.value = false
}
}
onMounted(async () => {
await initializeData()
})
// activated
onActivated(() => {
//
if (isDataInitialized.value) {
refresh()
} else {
initializeData()
}
})
const simpleProcessModelRef = ref()