fix : 修复页面细节

This commit is contained in:
2024-05-23 17:38:58 +08:00
parent cd7f94e8f2
commit 7e70c9271f

View File

@@ -149,8 +149,7 @@ const search = (val) => {
const handleAdd = () => { const handleAdd = () => {
//新增 //新增
router.push({ router.push({
// name: 'Add', name: 'Requirement/add',
path: '/project/demand/collection/add',
query: { query: {
isAdd: 1 isAdd: 1
} }
@@ -158,7 +157,7 @@ const handleAdd = () => {
} }
const handleEdit = (row) => { const handleEdit = (row) => {
router.push({ router.push({
name: 'Collection/edit', name: 'Requirement/edit',
query: { query: {
id: row.requirementId id: row.requirementId
} }
@@ -176,7 +175,7 @@ const handleDelete = (row) => {
} }
const handleDetail = (row) => { const handleDetail = (row) => {
router.push({ router.push({
name: 'Collection/detail', name: 'Requirement/detail',
query: { query: {
id: row.requirementId id: row.requirementId
} }