feat: 添加待确认收益和收益记录页面,更新路由和导航功能

This commit is contained in:
2025-12-27 21:01:12 +07:00
parent 13122c91e1
commit c6c3676a35
5 changed files with 524 additions and 2 deletions

View File

@@ -69,6 +69,16 @@ const routes: Array<RouteRecordRaw> = [
component: () => import("@/views/revenue/monthly/index.vue"),
meta: { requiresAuth: true },
},
{
path: "/revenue/pending",
component: () => import("@/views/revenue/pending/index.vue"),
meta: { requiresAuth: true },
},
{
path: "/revenue/records",
component: () => import("@/views/revenue/records/index.vue"),
meta: { requiresAuth: true },
},
{
path: "/wallet/bill",
component: () => import("@/views/wallet/bill.vue"),