From 6db4cbf5cf04170ad9decb6fcee22b35d9e4cd9e Mon Sep 17 00:00:00 2001 From: YunaiV Date: Sat, 27 Jul 2024 17:12:50 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E5=8A=9F=E8=83=BD=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E3=80=91BPM=EF=BC=9A=E8=A7=A3=E5=86=B3=E7=BC=BA=E5=B0=91?= =?UTF-8?q?=E4=BB=BB=E5=8A=A1=E5=88=86=E9=85=8D=E8=A7=84=E5=88=99=E7=9A=84?= =?UTF-8?q?=20index.vue=20=E6=96=87=E4=BB=B6=E7=9A=84=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/bpm/taskAssignRule/index.ts | 23 ----------------------- src/router/routes/index.ts | 12 ------------ 2 files changed, 35 deletions(-) delete mode 100644 src/api/bpm/taskAssignRule/index.ts 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'),