This commit is contained in:
2019-12-18 20:47:17 +00:00
parent d57bb13501
commit 6a9ab7f5b9
10 changed files with 225 additions and 4 deletions

View File

@@ -506,7 +506,7 @@ export default function initialize() {
//NOTIFICATION CONFIG AND HISTORY
sub.push({
title: window.$gz.locale.get("NOTIFY CONFIG"),
title: window.$gz.locale.get("NOTIFY SETTINGS"),
icon: "bullhorn",
route: "/notifysettings",
key: key++

View File

@@ -300,16 +300,69 @@ export default new Router({
import(/* webpackChunkName: "administration" */ "./views/reports.vue")
}
,
{
path: "/files",
name: "files",
component: () =>
import(/* webpackChunkName: "administration" */ "./views/files.vue")
}
,
{
path: "/history",
name: "history",
component: () =>
import(/* webpackChunkName: "administration" */ "./views/files.vue")
}
,
{
path: "/kpi",
name: "kpi",
component: () =>
import(/* webpackChunkName: "administration" */ "./views/kpi.vue")
}
,
{
path: "/archives",
name: "archives",
component: () =>
import(/* webpackChunkName: "operations" */ "./views/archives.vue")
}
,
{
path: "/jobs",
name: "jobs",
component: () =>
import(/* webpackChunkName: "operations" */ "./views/jobs.vue")
}
,
{
path: "/serverlogs",
name: "serverlogs",
component: () =>
import(/* webpackChunkName: "operations" */ "./views/server-logs.vue")
}
,
{
path: "/metrics",
name: "metrics",
component: () =>
import(/* webpackChunkName: "operations" */ "./views/metrics.vue")
}
,
{
path: "/notifysettings",
name: "notifysettings",
component: () =>
import(/* webpackChunkName: "operations" */ "./views/notify-settings.vue")
}

View File

@@ -0,0 +1,21 @@
<template>
<UnderConstruction />
</template>
<script>
import UnderConstruction from "../components/underconstruction.vue";
export default {
components: {
UnderConstruction
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "archive",
title: window.$gz.locale.get("ARCHIVE DATA"),
helpUrl: "user-form-archives"
});
}
};
</script>

View File

@@ -0,0 +1,21 @@
<template>
<UnderConstruction />
</template>
<script>
import UnderConstruction from "../components/underconstruction.vue";
export default {
components: {
UnderConstruction
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "folder",
title: window.$gz.locale.get("FILES MANAGER"),
helpUrl: "user-form-files-list"
});
}
};
</script>

View File

@@ -0,0 +1,21 @@
<template>
<UnderConstruction />
</template>
<script>
import UnderConstruction from "../components/underconstruction.vue";
export default {
components: {
UnderConstruction
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "history",
title: window.$gz.locale.get("HISTORY"),
helpUrl: "user-form-history"
});
}
};
</script>

View File

@@ -0,0 +1,21 @@
<template>
<UnderConstruction />
</template>
<script>
import UnderConstruction from "../components/underconstruction.vue";
export default {
components: {
UnderConstruction
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "robot",
title: window.$gz.locale.get("SERVER JOBS"),
helpUrl: "user-form-jobs"
});
}
};
</script>

21
ayanova/src/views/kpi.vue Normal file
View File

@@ -0,0 +1,21 @@
<template>
<UnderConstruction />
</template>
<script>
import UnderConstruction from "../components/underconstruction.vue";
export default {
components: {
UnderConstruction
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "chart-line",
title: window.$gz.locale.get("KPI CHARTS"),
helpUrl: "user-form-kpi"
});
}
};
</script>

View File

@@ -0,0 +1,21 @@
<template>
<UnderConstruction />
</template>
<script>
import UnderConstruction from "../components/underconstruction.vue";
export default {
components: {
UnderConstruction
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "file-medical-alt",
title: window.$gz.locale.get("SERVER METRICS"),
helpUrl: "user-form-server-metrics"
});
}
};
</script>

View File

@@ -0,0 +1,21 @@
<template>
<UnderConstruction />
</template>
<script>
import UnderConstruction from "../components/underconstruction.vue";
export default {
components: {
UnderConstruction
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "bullhorn",
title: window.$gz.locale.get("NOTIFY SETTINGS"),
helpUrl: "user-form-notify-settings"
});
}
};
</script>

View File

@@ -0,0 +1,21 @@
<template>
<UnderConstruction />
</template>
<script>
import UnderConstruction from "../components/underconstruction.vue";
export default {
components: {
UnderConstruction
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "history",
title: window.$gz.locale.get("Log"),
helpUrl: "user-form-server-logs"
});
}
};
</script>