From de0e0be95381b87dfd614f827250baf22683cea7 Mon Sep 17 00:00:00 2001 From: odjbin <1042039504@qq.com> Date: Tue, 14 May 2024 20:49:46 +0800 Subject: [PATCH] =?UTF-8?q?fix=20:=20=E4=BF=AE=E5=A4=8D=E8=B7=AF=E7=94=B1?= =?UTF-8?q?=E8=A7=84=E8=8C=83=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/project-demand/collection/index.vue | 6 +++--- src/views/project-demand/summary/index.vue | 2 +- src/views/project-management/initiation/index.vue | 6 ++++-- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/src/views/project-demand/collection/index.vue b/src/views/project-demand/collection/index.vue index 5096d8f..bf9575c 100644 --- a/src/views/project-demand/collection/index.vue +++ b/src/views/project-demand/collection/index.vue @@ -122,7 +122,7 @@ const search = (val) => { } const handleAdd = () => { router.push({ - path: '/project/demand/collection/add', + name: 'Collection/add', query: { isAdd: 1 } @@ -130,7 +130,7 @@ const handleAdd = () => { } const handleEdit = (row) => { router.push({ - path: '/project/demand/collection/edit', + name: 'Collection/edit', query: { id: row.requirementId } @@ -138,7 +138,7 @@ const handleEdit = (row) => { } const handleDetail = (row) => { router.push({ - path: '/project/demand/collection/detail', + name: 'Collection/detail', query: { id: row.requirementId } diff --git a/src/views/project-demand/summary/index.vue b/src/views/project-demand/summary/index.vue index 28e7a14..34bfa04 100644 --- a/src/views/project-demand/summary/index.vue +++ b/src/views/project-demand/summary/index.vue @@ -157,7 +157,7 @@ const headBtnClick = (key) => { const handleAdd = () => { router.push({ - name: 'Demandsummaryadd', + name: 'Summary/add', query: {} }) } diff --git a/src/views/project-management/initiation/index.vue b/src/views/project-management/initiation/index.vue index 68b206a..66835f7 100644 --- a/src/views/project-management/initiation/index.vue +++ b/src/views/project-management/initiation/index.vue @@ -131,12 +131,14 @@ const tableConfig = reactive({ prop: 'status', label: '发布状态', align: 'center', + showOverflowTooltip: false, currentRender: ({row, index}) => () }, { prop: 'oper', label: '操作', align: 'center', + showOverflowTooltip: false, currentRender: ({row, index}) => { let btn = [{label: '详情', func: () => handleDetail(row), type: 'primary'}] if (row.state === '3' || row.state === '2') { @@ -163,7 +165,7 @@ const tableConfig = reactive({ } } ], - api: '', + api: '/workflow/mosr/requirement', params: {}, }) @@ -174,7 +176,7 @@ const search = (val) => { const handleDetail = (row) => { router.push({ - path: '/project/management/detail', + name:'Detail', query: { id: row.requirementId }