case 4200
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "ayanova",
|
||||
"version": "8.0.13",
|
||||
"version": "8.0.14",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"serve": "vue-cli-service serve",
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
export default {
|
||||
version: "8.0.13",
|
||||
version: "8.0.14",
|
||||
copyright: "© 1999-2022, Ground Zero Tech-Works Inc."
|
||||
};
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<template v-if="count > 0">
|
||||
<v-badge inline>
|
||||
<template v-slot:badge>
|
||||
{{ count }}
|
||||
{{ count }} <span v-if="hasMoreItems">+</span>
|
||||
</template>
|
||||
<v-icon>{{ icon }}</v-icon>
|
||||
</v-badge>
|
||||
@@ -27,7 +27,7 @@
|
||||
<template v-if="count > 0">
|
||||
<v-badge inline class="mr-4">
|
||||
<template v-slot:badge>
|
||||
{{ count }}
|
||||
{{ count }} <span v-if="hasMoreItems">+</span>
|
||||
</template>
|
||||
<v-icon>{{ icon }}</v-icon>
|
||||
</v-badge>
|
||||
@@ -165,6 +165,7 @@
|
||||
</v-sheet>
|
||||
</template>
|
||||
<script>
|
||||
const KPI_LIST_MAX_ITEMS_TO_RETURN = 100;
|
||||
export default {
|
||||
props: {
|
||||
id: {
|
||||
@@ -200,6 +201,10 @@ export default {
|
||||
},
|
||||
hasError() {
|
||||
return this.errorMessage != null && this.errorMessage.length > 0;
|
||||
},
|
||||
hasMoreItems() {
|
||||
//case 4200
|
||||
return this.count == KPI_LIST_MAX_ITEMS_TO_RETURN;
|
||||
}
|
||||
},
|
||||
created() {
|
||||
|
||||
@@ -223,7 +223,6 @@ export default {
|
||||
name: "---",
|
||||
color: "#eeeeeeff"
|
||||
});
|
||||
console.log(this.meta);
|
||||
this.obj = res.data;
|
||||
}
|
||||
} catch (error) {
|
||||
|
||||
Reference in New Issue
Block a user