修复权限验证问题:普通用户无法访问后台管理页面

This commit is contained in:
AIGC Developer
2025-10-23 09:59:54 +08:00
parent a294f61f3c
commit 08b737b1ef
59 changed files with 3586 additions and 607 deletions

View File

@@ -0,0 +1,18 @@
<template>
<div class="api-management">
<h1>API管理页面</h1>
<p>API管理功能开发中...</p>
</div>
</template>
<script setup>
import { useRouter } from 'vue-router'
const router = useRouter()
</script>
<style scoped>
.api-management {
padding: 20px;
}
</style>