From 4fcbf12442a5195512ddc64bf2877246079269d4 Mon Sep 17 00:00:00 2001 From: Yangk Date: Fri, 9 Jan 2026 16:23:47 +0800 Subject: [PATCH] =?UTF-8?q?refactor(crm/businessTripApply):=20=E5=87=BA?= =?UTF-8?q?=E5=B7=AE=E7=94=B3=E8=AF=B7=E8=B7=AF=E7=94=B1=E8=B7=AF=E5=BE=84?= =?UTF-8?q?=E4=BB=8E=E9=9D=99=E6=80=81=E8=B7=AF=E7=94=B1=E6=9B=B4=E6=94=B9?= =?UTF-8?q?=E4=B8=BA=E8=8F=9C=E5=8D=95=E5=8A=A8=E6=80=81=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E8=B7=AF=E7=94=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/oa/crm/businessTripApply/index.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/oa/crm/businessTripApply/index.vue b/src/views/oa/crm/businessTripApply/index.vue index 36ff4b4..6162c2e 100644 --- a/src/views/oa/crm/businessTripApply/index.vue +++ b/src/views/oa/crm/businessTripApply/index.vue @@ -294,7 +294,7 @@ const handleSelectionChange = (selection: BusinessTripApplyVO[]) => { /** 新增按钮操作 */ const handleAdd = (command: string) => { router.push({ - path: '/oa/crm/businessTripApply/edit', + path: '/tripapply/businessTripApply/edit', query: { type: 'add', tripType: command } }); }; @@ -303,7 +303,7 @@ const handleAdd = (command: string) => { const handleUpdate = (row?: BusinessTripApplyVO) => { const _tripId = row?.tripId || ids.value[0]; router.push({ - path: '/oa/crm/businessTripApply/edit', + path: '/tripapply/businessTripApply/edit', query: { id: _tripId, type: 'update' } }); }; @@ -312,7 +312,7 @@ const handleUpdate = (row?: BusinessTripApplyVO) => { const handleView = (row: BusinessTripApplyVO) => { const _tripId = row?.tripId; router.push({ - path: '/oa/crm/businessTripApply/edit', + path: '/tripapply/businessTripApply/edit', query: { id: _tripId, type: 'view' } }); };