@@ -27,7 +27,7 @@ function doOpen(item) {
name: currentRoute.name,
params: {
content: 'content',
- id: decodeURIComponent(item.id) + '.html'
+ id: item.id + '.html'
},
query: currentRoute.query
}
@@ -5,7 +5,7 @@ export function doOpenArticlePage({ id }) {
const link = router.resolve({
name: 'article_detail',
- id: decodeURIComponent(id),
+ id: id,
content: 'content'
})