Skip to content
Snippets Groups Projects
Verified Commit a905a526 authored by Eliot Berriot's avatar Eliot Berriot
Browse files

See #890: added report detail page

parent b316b93a
No related branches found
No related tags found
No related merge requests found
......@@ -462,6 +462,15 @@ export default new Router({
}
}
},
{
path: "reports/:id",
name: "manage.moderation.reports.detail",
component: () =>
import(
/* webpackChunkName: "admin" */ "@/views/admin/moderation/ReportDetail"
),
props: true
},
]
},
{
......
<template>
<main>
<div v-if="isLoading" class="ui vertical segment">
<div :class="['ui', 'centered', 'active', 'inline', 'loader']"></div>
</div>
<template v-if="object">
<div class="ui vertical stripe segment">
<report-card :obj="object"></report-card>
</div>
</template>
</main>
</template>
<script>
import axios from "axios"
import ReportCard from "@/components/manage/moderation/ReportCard"
export default {
props: ["id"],
components: {
ReportCard,
},
data() {
return {
isLoading: true,
object: null,
}
},
created() {
this.fetchData()
},
methods: {
fetchData() {
var self = this
this.isLoading = true
let url = `manage/moderation/reports/${this.id}/`
axios.get(url).then(response => {
self.object = response.data
self.isLoading = false
})
},
},
}
</script>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment