diff --git a/src/pages/Achievements.vue b/src/pages/Achievements.vue
index 72c493a2..391013ca 100644
--- a/src/pages/Achievements.vue
+++ b/src/pages/Achievements.vue
@@ -30,14 +30,17 @@
v-for="(series, index) in seriesList"
@click="selectSeries(index)"
>
+
v{{ series.version }}
- {{ series.name }}
- {{ series.completed_count }} / {{ series.total_count }}
+
+ {{ series.name }}
+
+
+ {{ series.completed_count }} / {{ series.total_count }}
+
@@ -75,6 +78,7 @@
{{ achievement.name }}
{{ achievement.progress !== 0 ? "| " + achievement.progress : null }}
+ v{{ achievement.version }}
{{ achievement.description }}
@@ -366,6 +370,29 @@ async function exportJson() {
max-height: 90vh;
font-family: Genshin-Light, "serif";
}
+/* 版本信息 */
+.version-icon-series {
+ font-family: Genshin, serif;
+ position: absolute;
+ right: 0;
+ bottom: 0;
+ text-align: center;
+ width: 80px;
+ background: #546d8b;
+ border-radius: 10px 0 0 0;
+ border-top: #ffffff 2px solid;
+ border-left: #ffffff 2px solid;
+ color: #fec90b;
+ font-size: 10px;
+}
+
+.version-icon-single {
+ font-family: Genshin, serif;
+ border-radius: 5px;
+ text-align: center;
+ color: #ff6d6d !important;
+ font-size: 10px;
+}
/* 左侧系列 */
.left-wrap {