fix : 修复路由规范问题

This commit is contained in:
2024-05-14 20:26:33 +08:00
parent 2ad94511d0
commit 27dcca6617
12 changed files with 1219 additions and 3 deletions

View File

@@ -122,7 +122,7 @@ const search = (val) => {
}
const handleAdd = () => {
router.push({
path: '/projectdemand/demandadd',
path: '/project/demand/collection/add',
query: {
isAdd: 1
}
@@ -130,7 +130,7 @@ const handleAdd = () => {
}
const handleEdit = (row) => {
router.push({
path: '/projectdemand/demandedit',
path: '/project/demand/collection/edit',
query: {
id: row.requirementId
}
@@ -138,7 +138,7 @@ const handleEdit = (row) => {
}
const handleDetail = (row) => {
router.push({
path: '/projectdemand/demanddetail',
path: '/project/demand/collection/detail',
query: {
id: row.requirementId
}