update
Some checks failed
Deploy / deploy (build, debian, 22, /root/OJDeploy/data/clientnext) (push) Has been cancelled
Deploy / deploy (build:staging, school, 8822, /root/OJ/data/dist) (push) Has been cancelled

This commit is contained in:
2026-06-29 07:52:17 -06:00
parent 1d285c8694
commit a4bd4fcd13
12 changed files with 29 additions and 29 deletions

View File

@@ -10,7 +10,7 @@ defineProps<{ contest: Contest }>()
<Icon
v-if="contest.contest_type === ContestType.private"
:height="24"
icon="streamline-emojis:locked-with-key"
icon="streamline-ultimate-color:shield-lock"
></Icon>
<span>{{ contest.title }}</span>
</n-flex>

View File

@@ -179,7 +179,7 @@ const options: Array<DropdownOption | DropdownDividerOption> = [
{
label: "我的主页",
key: "home",
icon: renderIcon("streamline-emojis:newspaper"),
icon: renderIcon("streamline-ultimate-color:newspaper-fold"),
props: {
onClick: () => router.push("/user"),
},
@@ -196,7 +196,7 @@ const options: Array<DropdownOption | DropdownDividerOption> = [
{
label: "我的提交",
key: "status",
icon: renderIcon("streamline-emojis:bar-chart"),
icon: renderIcon("streamline-ultimate-color:analytics-bars-3d"),
props: {
onClick: () => router.push("/submission?myself=1"),
},
@@ -221,7 +221,7 @@ const options: Array<DropdownOption | DropdownDividerOption> = [
{
label: "退出",
key: "logout",
icon: renderIcon("streamline-emojis:hot-beverage-2"),
icon: renderIcon("streamline-ultimate-color:coffee-cold"),
props: { onClick: handleLogout },
},
]