vue3 工作流:修复流程详情的报错

This commit is contained in:
YunaiV
2023-01-30 22:10:41 +08:00
parent 8ce0c8081c
commit 1e8a379ed0
2 changed files with 8 additions and 5 deletions

View File

@ -209,9 +209,9 @@ const { proxy } = getCurrentInstance()
// ========== 审批信息 ==========
const id = query.id as unknown as number
const processInstanceLoading = ref(false) // 流程实例的加载中
const processInstance = ref() // 流程实例
const runningTasks = ref() // 运行中的任务
const auditForms = ref() // 审批任务的表单
const processInstance = ref({}) // 流程实例
const runningTasks = ref([]) // 运行中的任务
const auditForms = ref([]) // 审批任务的表单
const auditRule = reactive({
reason: [{ required: true, message: '审批建议不能为空', trigger: 'blur' }]
})
@ -257,7 +257,7 @@ const detailForm = ref({
// ========== 审批记录 ==========
const tasksLoad = ref(true)
const tasks = ref()
const tasks = ref([])
const getTimelineItemIcon = (item) => {
if (item.result === 1) {
@ -301,7 +301,7 @@ const updateAssigneeRules = ref({
assigneeUserId: [{ required: true, message: '新审批人不能为空', trigger: 'change' }]
})
const updateAssigneeFormRef = ref()
const userOptions = ref()
const userOptions = ref([])
// 处理转派审批人
const handleUpdateAssignee = (task) => {