diff --git a/client/src/components/SchemaView.vue b/client/src/components/SchemaView.vue index e8d23e7..28594ae 100644 --- a/client/src/components/SchemaView.vue +++ b/client/src/components/SchemaView.vue @@ -70,8 +70,9 @@ -->
- - + + + @@ -130,7 +131,8 @@
- + +
@@ -187,7 +189,8 @@
- + + @@ -240,6 +243,54 @@ export default { }, data () { return { + adminLabel: (h) => { + return h('span', [ + h('span', 'Data '), + h('span', { + attrs: { + title: this.dataTotal + } + }, [ + h('Badge', { + props: { + count: this.dataTotal + } + }) + ]) + ]) + }, + workPoolLabel: (h) => { + return h('span', [ + h('span', 'Work Pool '), + h('span', { + attrs: { + title: this.dataTotalC + } + }, [ + h('Badge', { + props: { + count: this.dataTotalC + } + }) + ]) + ]) + }, + queueLabel: (h) => { + return h('span', [ + h('span', 'In Progress '), + h('span', { + attrs: { + title: this.dataTotalU + } + }, [ + h('Badge', { + props: { + count: this.dataTotalU + } + }) + ]) + ]) + }, tableId: '', taskName: '', formSchemaInstancefile: {