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