diff --git a/src/assets/icon-spawn.svg b/src/assets/icon-spawn.svg
new file mode 100644
index 0000000..2bf6479
--- /dev/null
+++ b/src/assets/icon-spawn.svg
@@ -0,0 +1,3 @@
+
diff --git a/src/assets/icon-timetable.svg b/src/assets/icon-timetable.svg
new file mode 100644
index 0000000..85263ca
--- /dev/null
+++ b/src/assets/icon-timetable.svg
@@ -0,0 +1,3 @@
+
diff --git a/src/assets/icon-user.svg b/src/assets/icon-user.svg
new file mode 100644
index 0000000..6a19172
--- /dev/null
+++ b/src/assets/icon-user.svg
@@ -0,0 +1,3 @@
+
diff --git a/src/assets/icon-view.svg b/src/assets/icon-view.svg
new file mode 100644
index 0000000..592e5f8
--- /dev/null
+++ b/src/assets/icon-view.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/components/StationsView/StationCard.vue b/src/components/StationsView/StationCard.vue
index 903c54f..d293b29 100644
--- a/src/components/StationsView/StationCard.vue
+++ b/src/components/StationsView/StationCard.vue
@@ -7,19 +7,17 @@
alt="schedule-icon"
@click="() => (cardMode = cardMode == 0 ? 1 : 0)"
/>
-
+
| changeSorter(i)" - > + | changeSorter(i)">
{{ head[0] }}
@@ -30,11 +26,7 @@
class="table-item"
v-for="(station, i) in stations"
:key="i + station.stationHash"
- @click="
- () => {
- setFocusedStation(station.stationName);
- }
- "
+ @click="setScenery(station.stationHash)"
>
- {{ station.stationName }}
- |
+ >{{ station.stationName }}
- {{
- station.reqLevel && station.reqLevel > -1
- ? parseInt(station.reqLevel) >= 2
- ? station.reqLevel
- : "L"
- : "?"
- }}
+
+ {{
+ station.reqLevel && station.reqLevel > -1
+ ? parseInt(station.reqLevel) >= 2
+ ? station.reqLevel
+ : "L"
+ : "?"
+ }}
+
?
|
- {{
+
+ {{
station.occupiedTo
- }}
+ }}
+
|
-
- {{ station.online ? station.dispatcherName : "" }}
- |
+ {{ station.online ? station.dispatcherName : "" }} |
- {{
- 2 > station.dispatcherExp ? "L" : station.dispatcherExp
- }}
+
+ {{
+ 2 > station.dispatcherExp ? "L" : station.dispatcherExp
+ }}
+
|
{{
- station.online
- ? station.currentUsers + "/" + station.maxUsers
- : ""
+ station.online
+ ? station.currentUsers + "/" + station.maxUsers
+ : ""
}}
|
@@ -130,8 +116,7 @@
'Liczba zelektryfikowanych szlaków dwutorowych: ' +
station.routes.twoWay.catenary
"
- >{{ station.routes.twoWay.catenary }}
+ >{{ station.routes.twoWay.catenary }}
{{ station.routes.twoWay.noCatenary }}
+ >{{ station.routes.twoWay.noCatenary }}
@@ -152,8 +136,7 @@
'Liczba zelektryfikowanych szlaków jednotorowych: ' +
station.routes.oneWay.catenary
"
- >{{ station.routes.oneWay.catenary }}
+ >{{ station.routes.oneWay.catenary }}
{{ station.routes.oneWay.noCatenary }}
+ >{{ station.routes.oneWay.noCatenary }}
|
| |
|---|