|
@@ -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) => {
|