|
@@ -151,16 +151,16 @@ export default {
|
|
|
this.$router.push({ path: '/sys/menus/list' })
|
|
|
},
|
|
|
handleCreate() {
|
|
|
- this.$router.push({ path: '/sys/menus/add', query: { parentId: this.listQuery.parentId, title: this.parentTitle } })
|
|
|
+ this.$router.push({ path: '/sys/menus/add', query: { parentId: this.listQuery.parentId, title: this.parentTitle }})
|
|
|
},
|
|
|
handleUpdate(row) {
|
|
|
- this.$router.push({ path: '/sys/menus/edit', query: { id: row.id, parentId: this.listQuery.parentId, title: this.parentTitle } })
|
|
|
+ this.$router.push({ path: '/sys/menus/edit', query: { id: row.id, parentId: this.listQuery.parentId, title: this.parentTitle }})
|
|
|
},
|
|
|
handleShowNextLevel(row) {
|
|
|
- this.$router.push({ path: '/sys/menus/list', query: { parentId: row.id, title: row.title } })
|
|
|
+ this.$router.push({ path: '/sys/menus/list', query: { parentId: row.id, title: row.title }})
|
|
|
},
|
|
|
handleCreateNextLevel(row) {
|
|
|
- this.$router.push({ path: '/sys/menus/add', query: { parentId: row.id, title: row.title } })
|
|
|
+ this.$router.push({ path: '/sys/menus/add', query: { parentId: row.id, title: row.title }})
|
|
|
},
|
|
|
handleDelete(row) {
|
|
|
this.$confirm('是否要删除该菜单', '提示', {
|