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

This commit is contained in:
YunaiV
2023-04-08 11:49:28 +08:00
parent 04c3cdf372
commit adb8b58967
70 changed files with 97 additions and 96 deletions

View File

@@ -67,7 +67,7 @@ import Parser from '@/components/parser/Parser'
import {decodeFields} from "@/utils/formGenerator";
export default {
name: "Form",
name: "BpmForm",
components: {
Parser
},
@@ -134,13 +134,13 @@ export default {
/** 新增按钮操作 */
handleAdd() {
this.$router.push({
path:"/bpm/manager/form/edit"
name: "BpmFormEditor"
});
},
/** 修改按钮操作 */
handleUpdate(row) {
this.$router.push({
path:"/bpm/manager/form/edit",
name: "BpmFormEditor",
query:{
formId: row.id
}