feat: 添加自定义导航栏组件和相关 composables

This commit is contained in:
Ray.Hao
2026-03-06 13:24:34 +08:00
parent 5bf7f0561f
commit da47f98fe9
30 changed files with 2831 additions and 551 deletions

View File

@@ -0,0 +1,39 @@
<template>
<view class="page">
<wd-cell-group border>
<wd-cell title="菜单管理" is-link to="/pages/work/menu/index" />
</wd-cell-group>
<view class="placeholder">
<text class="placeholder__text">菜单管理功能开发中...</text>
</view>
</view>
</template>
<script setup lang="ts">
</script>
<route lang="json">
{
"name": "menu",
"style": { "navigationBarTitleText": "菜单管理" }
}
</route>
<style lang="scss" scoped>
.page {
min-height: 100vh;
background-color: #f8fafc;
}
.placeholder {
display: flex;
justify-content: center;
align-items: center;
height: 300rpx;
&__text {
font-size: 14px;
color: #94a3b8;
}
}
</style>