[Bug][Next UI] Fix the branch flow options of the switch task is not available. (#9481)

doc-new-release
Amy0104 2022-04-13 20:51:43 +08:00 committed by GitHub
parent e5c66ecc31
commit e134c63e68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -16,18 +16,18 @@
*/
import { ref, watch } from 'vue'
import { useI18n } from 'vue-i18n'
import type { IJsonItem } from '../types'
import { useTaskNodeStore } from '@/store/project/task-node'
import { queryProcessDefinitionByCode } from '@/service/modules/process-definition'
import type { IJsonItem } from '../types'
export function useSwitch(
model: { [field: string]: any },
projectCode: number
): IJsonItem[] {
const { t } = useI18n()
const branchFlowOptions = ref([] as any)
const taskStore = useTaskNodeStore()
const branchFlowOptions = ref(taskStore.postTaskOptions as any)
const loading = ref(false)
const getOtherTaskDefinitionList = async () => {
if (loading.value) return
loading.value = true