diff --git a/src/api/bpm/taskAssignRule/index.ts b/src/api/bpm/taskAssignRule/index.ts deleted file mode 100644 index 020122baf..000000000 --- a/src/api/bpm/taskAssignRule/index.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { defHttp } from '@/utils/http/axios' - -export interface TaskAssignVO { - id: number - modelId: string - processDefinitionId: string - taskDefinitionKey: string - taskDefinitionName: string - options: string[] - type: number -} - -export function getTaskAssignRuleList(params) { - return defHttp.get({ url: '/bpm/task-assign-rule/list', params }) -} - -export function createTaskAssignRule(data: TaskAssignVO) { - return defHttp.post({ url: '/bpm/task-assign-rule/create', data }) -} - -export function updateTaskAssignRule(data: TaskAssignVO) { - return defHttp.put({ url: '/bpm/task-assign-rule/update', data }) -} diff --git a/src/router/routes/index.ts b/src/router/routes/index.ts index 1a303f8ca..446af8b27 100644 --- a/src/router/routes/index.ts +++ b/src/router/routes/index.ts @@ -206,18 +206,6 @@ export const BpmRoute: AppRouteRecordRaw = { activeMenu: '/bpm/manager/model', }, }, - { - path: '/manager/task-assign-rule', - component: () => import('@/views/bpm/taskAssignRule/index.vue'), - name: 'BpmTaskAssignRuleList', - meta: { - canTo: true, - hidden: true, - noTagsView: false, - icon: 'ant-design:edit-outlined', - title: '任务分配规则', - }, - }, { path: '/process-instance/create', component: () => import('@/views/bpm/processInstance/create/index.vue'),