feat: migrate app routes and business modules

This commit is contained in:
2026-08-12 18:22:59 +08:00
parent 555aa00043
commit cc706378c2
247 changed files with 28623 additions and 14988 deletions
+16
View File
@@ -0,0 +1,16 @@
export const previewCurrentUser = Object.freeze({
id: 1,
name: '汤文远',
phone: '138****1024',
role: '创建者'
})
const previewPendingJoinApplications = [
{ id: '1', genealogyId: '1001', name: '汤志成', phone: '139****6421', relation: '自述为汤正华堂侄', appliedAt: '今天 10:24', status: '0' },
{ id: '2', genealogyId: '1001', name: '汤雨薇', phone: '136****2798', relation: '自述为汤正国之女', appliedAt: '昨天 18:02', status: '0' }
]
export const createPreviewPendingJoinApplications = () =>
previewPendingJoinApplications.map((application) => ({ ...application }))
export const createPreviewMyJoinApplications = () => []