安防大屏
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled

This commit is contained in:
2025-08-16 17:58:59 +08:00
parent 7edbeca307
commit 97dc93f3aa
14 changed files with 1027 additions and 56 deletions

View File

@@ -68,12 +68,12 @@ defineOptions({
const props = withDefaults(defineProps<Props>(), {
avatar: '',
description: '',
enableShortcutKey: true,
menus: () => [],
showShortcutKey: true,
tagText: '',
text: '',
description: '',
trigger: 'click',
hoverDelay: 500,
});
@@ -168,6 +168,7 @@ if (enableShortcutKey.value) {
v-if="preferences.widget.lockScreen"
:avatar="avatar"
:text="text"
:description="description"
@submit="handleSubmitLock"
/>
@@ -214,7 +215,7 @@ if (enableShortcutKey.value) {
</Badge>
</slot>
</div>
<div class="text-muted-foreground text-xs font-normal">
<div class="text-muted-foreground text-xs font-normal">
{{ description }}
</div>
</div>

View File

@@ -26,6 +26,10 @@ interface BasicUserInfo {
* 用户名
*/
username: string;
/**
* 邮箱
*/
email: string;
}
interface AccessState {