You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OneAuth/ui/c/app/menu.html

34 lines
641 B
HTML

7 months ago
<!DOCTYPE html>
<html>
<style>
.body {}
.menu-item {
padding: 10px 20px;
cursor: pointer;
transition: background 0.3s;
}
</style>
<body>
<div class="menu-item">
<a :href="`/app/main?id=${id}`">应用简介</a>
</div>
<div class="menu-item">
<a :href="`/app/user?id=${id}`">用户管理</a>
</div>
<div class="menu-item">
<a :href="`/app/auth?id=${id}`">权限管理</a>
</div>
<div class="menu-item">
<a :href="`/app/settings?id=${id}`">应用设置</a>
</div>
</body>
<script setup>
const params = new URLSearchParams(window.location.search)
id = params.get('id')
</script>
</html>