feat: migrate app routes and business modules
This commit is contained in:
@@ -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 = () => []
|
||||
Reference in New Issue
Block a user