- {{ item.name }} |
+
+
+ {{ item.name }}
+ |
{{ item.alarmCount }} |
{{ item.unackedCount }} |
diff --git a/src/components/dashboard/dashboardElecChart.vue b/src/components/dashboard/dashboardElecChart.vue
index e319e84..cc8a624 100644
--- a/src/components/dashboard/dashboardElecChart.vue
+++ b/src/components/dashboard/dashboardElecChart.vue
@@ -1,6 +1,6 @@
@@ -107,5 +215,4 @@ const getBarChartOptions = (data) => {
-
+
diff --git a/src/components/dashboard/dashboardStat.vue b/src/components/dashboard/dashboardStat.vue
index 1b4d041..10628a6 100644
--- a/src/components/dashboard/dashboardStat.vue
+++ b/src/components/dashboard/dashboardStat.vue
@@ -33,10 +33,10 @@ const mockData = [
- {{ item.label }}
{{ item.value }}{{ item.unit }}
+ {{ item.label }}
@@ -60,7 +60,7 @@ const mockData = [
.number h3 {
font-weight: 700;
margin-bottom: 0;
- font-size: 30px;
+ font-size: 33px;
}
.number h3 small {
font-weight: 500;
diff --git a/src/components/dashboard/dashboardTag.vue b/src/components/dashboard/dashboardTag.vue
index ddb4eae..2e6e6bc 100644
--- a/src/components/dashboard/dashboardTag.vue
+++ b/src/components/dashboard/dashboardTag.vue
@@ -53,7 +53,7 @@ const handleClick = (ord) => {
-
+
System
diff --git a/src/main.js b/src/main.js
index e816732..8f1cb80 100644
--- a/src/main.js
+++ b/src/main.js
@@ -22,7 +22,8 @@ import {
faAngleDown,
faLeaf,
faBolt,
- faChargingStation
+ faChargingStation,
+ faExclamationCircle,
} from "@fortawesome/free-solid-svg-icons";
library.add(
faTv,
@@ -40,7 +41,8 @@ library.add(
faAngleDown,
faLeaf,
faBolt,
- faChargingStation
+ faChargingStation,
+ faExclamationCircle,
);
const pinia = createPinia();
const app = createApp(App);
|