From 5c7a1dd3d6a22e02b983a01be39b654b8eaa6ad1 Mon Sep 17 00:00:00 2001 From: Maksim Zakharov Date: Mon, 23 May 2022 16:46:24 +0300 Subject: Add pages: BMC, Ipv4/6, console settings. Fix routes: add console mixin, disable fullscreen console, add global styles. --- .../Info/InventoryControlSystem.vue | 228 +++++++++++++++++++++ .../Info/InventoryTableSystem.vue | 86 ++++++++ src/views/SystemDescription/Info/NtpPopover.vue | 141 +++++++++++++ .../SystemDescription/Info/SystemDescription.vue | 202 ++++++++++++++++++ src/views/SystemDescription/Info/index.js | 2 + 5 files changed, 659 insertions(+) create mode 100644 src/views/SystemDescription/Info/InventoryControlSystem.vue create mode 100644 src/views/SystemDescription/Info/InventoryTableSystem.vue create mode 100644 src/views/SystemDescription/Info/NtpPopover.vue create mode 100644 src/views/SystemDescription/Info/SystemDescription.vue create mode 100644 src/views/SystemDescription/Info/index.js (limited to 'src/views/SystemDescription/Info') diff --git a/src/views/SystemDescription/Info/InventoryControlSystem.vue b/src/views/SystemDescription/Info/InventoryControlSystem.vue new file mode 100644 index 00000000..f47b4868 --- /dev/null +++ b/src/views/SystemDescription/Info/InventoryControlSystem.vue @@ -0,0 +1,228 @@ + + + + diff --git a/src/views/SystemDescription/Info/InventoryTableSystem.vue b/src/views/SystemDescription/Info/InventoryTableSystem.vue new file mode 100644 index 00000000..b022fd6d --- /dev/null +++ b/src/views/SystemDescription/Info/InventoryTableSystem.vue @@ -0,0 +1,86 @@ + + + + diff --git a/src/views/SystemDescription/Info/NtpPopover.vue b/src/views/SystemDescription/Info/NtpPopover.vue new file mode 100644 index 00000000..81e95e4d --- /dev/null +++ b/src/views/SystemDescription/Info/NtpPopover.vue @@ -0,0 +1,141 @@ + + + + diff --git a/src/views/SystemDescription/Info/SystemDescription.vue b/src/views/SystemDescription/Info/SystemDescription.vue new file mode 100644 index 00000000..7322d03e --- /dev/null +++ b/src/views/SystemDescription/Info/SystemDescription.vue @@ -0,0 +1,202 @@ + + + + diff --git a/src/views/SystemDescription/Info/index.js b/src/views/SystemDescription/Info/index.js new file mode 100644 index 00000000..8b483f2d --- /dev/null +++ b/src/views/SystemDescription/Info/index.js @@ -0,0 +1,2 @@ +import SystemDescription from './SystemDescription.vue'; +export default SystemDescription; -- cgit v1.2.3