feat: 新增通知管理功能,包括通知的创建、列表展示及相关路由配置;更新相关依赖

This commit is contained in:
2026-01-08 17:18:53 +07:00
parent 6cc6aa7200
commit c7786871b0
11 changed files with 386 additions and 130 deletions

View File

@@ -24,6 +24,7 @@ export const views: Record<LastLevelRouteKey, RouteComponent | (() => Promise<Ro
bank: () => import("@/views/bank/index.vue"),
deposit_fiat: () => import("@/views/deposit/fiat/index.vue"),
home: () => import("@/views/home/index.vue"),
notification: () => import("@/views/notification/index.vue"),
rwa_product: () => import("@/views/rwa/product/index.vue"),
rwa_producttype: () => import("@/views/rwa/productType/index.vue"),
rwa_subscribe: () => import("@/views/rwa/subscribe/index.vue"),
@@ -32,7 +33,6 @@ export const views: Record<LastLevelRouteKey, RouteComponent | (() => Promise<Ro
transfer: () => import("@/views/transfer/index.vue"),
user_bankcard: () => import("@/views/user/bankcard/index.vue"),
user_list: () => import("@/views/user/list/index.vue"),
user_transfer: () => import("@/views/user/transfer/index.vue"),
withdraw_approved: () => import("@/views/withdraw/approved/index.vue"),
withdraw_fiat: () => import("@/views/withdraw/fiat/index.vue"),
};