add user homepage.

This commit is contained in:
2023-02-15 22:24:36 +08:00
parent b5e1b3db3a
commit 2ea6cc7385
8 changed files with 141 additions and 36 deletions

View File

@@ -40,7 +40,15 @@ const columns = ref<DataTableColumn<ContestRank>[]>([
fixed: "left",
align: "center",
render: (row) =>
h(NButton, { text: true, type: "info" }, () => row.user.username),
h(
NButton,
{
text: true,
type: "info",
onClick: () => router.push("/user?name=" + row.user.username),
},
() => row.user.username
),
},
{
title: "正确数/总提交",