🐛 修复一些问题

This commit is contained in:
BTMuli
2023-09-08 10:15:38 +08:00
parent afb0f317cc
commit 46a4752140
2 changed files with 2 additions and 3 deletions

View File

@@ -40,6 +40,7 @@ const show = ref(true);
const props = withDefaults(defineProps<LoadingProps>(), {
modelValue: true,
title: "加载中",
subtitle: "",
empty: false,
});

View File

@@ -19,7 +19,6 @@
<div class="wrap">
<!-- 左侧菜单 -->
<div class="left-wrap">
<!-- todo 简化 -->
<v-list
v-for="series in seriesList"
:key="series.id"
@@ -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>