所有菜单的 name 都加上模块的前缀,避免冲突

This commit is contained in:
shizhong
2023-07-10 19:11:15 +08:00
parent 3b2d308ccc
commit c6a9c0c5fb
62 changed files with 81 additions and 93 deletions

View File

@ -63,14 +63,14 @@ const [registerTable, { deleteData }] = useXTable({
// 新增操作
const handleCreate = () => {
push({
name: 'bpmFormEditor'
name: 'BpmFormEditor'
})
}
// 修改操作
const handleUpdate = async (rowId: number) => {
await push({
name: 'bpmFormEditor',
name: 'BpmFormEditor',
query: {
id: rowId
}