mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-02 03:55:55 +00:00
perf: dashboard 添加图表更新提示
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<v-card class="task-dialog" prepend-icon="mdi-align-horizontal-left" text="用户发起的任务列表" title="任务列表">
|
||||
<v-card class="task-dialog" prepend-icon="mdi-align-horizontal-left" title="任务列表">
|
||||
<v-list id="task-list" v-if="taskList.length > 0">
|
||||
<TaskCard class="task-card" v-for="task in taskList" :key="task.id" :task="task" />
|
||||
</v-list>
|
||||
|
||||
@@ -38,6 +38,10 @@
|
||||
</div>
|
||||
</v-card>
|
||||
</div>
|
||||
|
||||
<div id="dashboard-tips">
|
||||
* 更多图表将在数据持久化功能更新后可用。
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -96,6 +100,14 @@ onMounted(refresh)
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
#dashboard-tips {
|
||||
font-size: 0.8rem;
|
||||
color: #222;
|
||||
margin-top: 0.7rem;
|
||||
margin-left: 0.5rem;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
#first-row {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
|
||||
Reference in New Issue
Block a user