This commit is contained in:
2023-03-14 18:48:37 +08:00
parent 477cece1e7
commit b987749ff6
5 changed files with 116 additions and 73 deletions

View File

@@ -214,7 +214,11 @@ const columns = computed(() => {
render: (row) =>
h(
NButton,
{ size: "small", onClick: () => rejudge(row.id) },
{
size: "small",
tertiary: true,
onClick: () => rejudge(row.id),
},
() => "重新判题"
),
})