mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
835 B
38 lines
835 B
<template>
|
|
<v-card>
|
|
<v-card-title>Member's Progress</v-card-title>
|
|
<v-divider />
|
|
<v-card-text>
|
|
<div
|
|
v-for="(item, index) in stats.progress"
|
|
:key="index"
|
|
class="mb-2"
|
|
>
|
|
<span class="font-weight-medium">{{ item.user }}</span>
|
|
<span class="font-weight-medium">{{ item.done }} / {{ stats.total }}</span>
|
|
<v-progress-linear :value="rate(item.done, stats.total)" />
|
|
</div>
|
|
</v-card-text>
|
|
</v-card>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue'
|
|
export default Vue.extend({
|
|
data() {
|
|
return {
|
|
stats: {}
|
|
}
|
|
},
|
|
|
|
async created() {
|
|
this.stats = await this.$services.metrics.fetchMemberProgress(this.$route.params.id)
|
|
},
|
|
|
|
methods: {
|
|
rate(done: number, total: number) {
|
|
return done / total * 100
|
|
}
|
|
}
|
|
})
|
|
</script>
|