This commit is contained in:
2025-03-30 16:04:33 +08:00
parent cce7920dcc
commit b1fcecb9d4
7 changed files with 39 additions and 27 deletions

View File

@@ -27,6 +27,7 @@ const menu = [
route: { name: "tutorial", params: { display: step.value } },
},
{ label: "用户", route: { name: "user-manage", params: { page: 1 } } },
{ label: "提交", route: { name: "submissions", params: { page: 1 } } },
]
</script>
<style scoped>

View File

@@ -75,7 +75,7 @@ const data = ref<SubmissionOut[]>([])
const count = ref(0)
const query = reactive({
page: Number(route.params.page),
username: "",
username: route.query.username ?? "",
})
const html = computed(() => submission.value.html)