Skip to content
This repository has been archived by the owner on Mar 12, 2022. It is now read-only.

Commit

Permalink
fix: #77 文章添加/编辑页, 取消按钮跳转失效
Browse files Browse the repository at this point in the history
  • Loading branch information
klren0312 committed May 2, 2020
1 parent aadd665 commit e943fd0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ServerWeb/src/pages/articleManage/createArticle.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default {
})
},
goback() {
this.$router.push({path: '/articleManage'})
this.$router.go(-1)
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion ServerWeb/src/pages/articleManage/editArticle.vue
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export default {
})
},
goback() {
this.$router.push({path: '/articleManage'})
this.$router.go(-1)
}
}
}
Expand Down

0 comments on commit e943fd0

Please sign in to comment.