Skip to content

Commit

Permalink
🐛 修复一些问题
Browse files Browse the repository at this point in the history
  • Loading branch information
BTMuli committed Sep 8, 2023
1 parent afb0f31 commit 46a4752
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/components/overlay/to-loading.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ const show = ref(true);
const props = withDefaults(defineProps<LoadingProps>(), {
modelValue: true,
title: "加载中",
subtitle: "",
empty: false,
});
Expand Down
4 changes: 1 addition & 3 deletions src/pages/common/Achievements.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
<div class="wrap">
<!-- 左侧菜单 -->
<div class="left-wrap">
<!-- todo 简化 -->
<v-list
v-for="series in seriesList"
:key="series.id"
Expand Down Expand Up @@ -77,8 +76,7 @@
</div>
<v-list-item>
<template #prepend>
<v-icon :color="achievement.isCompleted ? 'var(--tgc-green-1)' : 'var(--tgc-blue-3)'">
<!-- todo 图标替换 -->
<v-icon :color="achievement.isCompleted ? 'success' : 'var(--tgc-blue-3)'">
{{ achievement.isCompleted ? "mdi-check-circle" : "mdi-circle" }}
</v-icon>
</template>
Expand Down

0 comments on commit 46a4752

Please sign in to comment.