feat: add no data tips

This commit is contained in:
Qiuxia Fan
2022-01-11 16:19:44 +08:00
parent 51103ac6ae
commit 015416d31d
3 changed files with 26 additions and 27 deletions

View File

@@ -51,22 +51,12 @@ export const dashboardStore = defineStore({
w: 24,
h: 12,
i: String(this.layout.length),
metrics: ["service_resp_time"],
queryMetricType: "readMetricsValues",
type: "Widget",
widget: {
title: "Title123",
tips: "Tooltip123",
},
graph: {
showBackground: true,
barWidth: 30,
type: "Line",
},
standard: {
sortOrder: "DEC",
unit: "s",
title: "Title",
},
graph: {},
standard: {},
};
this.layout = this.layout.map((d: LayoutConfig) => {
d.y = d.y + newWidget.h;
@@ -131,22 +121,12 @@ export const dashboardStore = defineStore({
w: 24,
h: 12,
i: String(children.length),
metrics: ["service_resp_time"],
queryMetricType: "readMetricsValues",
type: "Widget",
widget: {
title: "Title123",
tips: "Tooltip123",
},
graph: {
showBackground: true,
barWidth: 30,
type: "Line",
},
standard: {
sortOrder: "DEC",
unit: "s",
title: "Title",
},
graph: {},
standard: {},
};
if (this.layout[idx].children) {
const items = children.map((d: LayoutConfig) => {