diff --git a/src/router/modules/remaining.ts b/src/router/modules/remaining.ts index 4b177ae8..a5a7e449 100644 --- a/src/router/modules/remaining.ts +++ b/src/router/modules/remaining.ts @@ -307,6 +307,18 @@ const remainingRouter: AppRouteRecordRaw[] = [ activityId: route.query.activityId }) }, + { + path: 'process-instance/report', + component: () => import('@/views/bpm/processInstance/report/index.vue'), + name: 'BpmProcessInstanceReport', + meta: { + noCache: true, + hidden: true, + canTo: true, + title: '数据报表', + activeMenu: '/bpm/manager/model' + } + }, { path: 'oa/leave/create', component: () => import('@/views/bpm/oa/leave/create.vue'), diff --git a/src/views/bpm/model/CategoryDraggableModel.vue b/src/views/bpm/model/CategoryDraggableModel.vue index 1a8c37a8..0b097847 100644 --- a/src/views/bpm/model/CategoryDraggableModel.vue +++ b/src/views/bpm/model/CategoryDraggableModel.vue @@ -194,7 +194,10 @@ 报表 diff --git a/src/views/bpm/processInstance/report/index.vue b/src/views/bpm/processInstance/report/index.vue index ae0bd172..a7ab685c 100644 --- a/src/views/bpm/processInstance/report/index.vue +++ b/src/views/bpm/processInstance/report/index.vue @@ -171,9 +171,10 @@ const userList = ref([]) // 用户列表 const getList = async () => { loading.value = true try { - let queryParamsClone = { ...queryParams } - queryParamsClone.formFieldsParams = JSON.stringify(queryParamsClone.formFieldsParams) - const data = await ProcessInstanceApi.getProcessInstanceManagerPage(queryParamsClone) + const data = await ProcessInstanceApi.getProcessInstanceManagerPage({ + ...queryParams, + formFieldsParams: JSON.stringify(queryParams.formFieldsParams) + }) list.value = data.list total.value = data.total } finally { @@ -205,6 +206,7 @@ const handleQuery = () => { } /** 重置按钮操作 */ +// TODO @lesan:动态表单的 search ,无法重置的样子 const resetQuery = () => { queryFormRef.value.resetFields() queryFormRef.value.formFieldsParams = {}