init: initial commit
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
import { mockDate } from '../index'
|
||||
import type { SystemRole } from '@/api/system'
|
||||
|
||||
export const mockRoles: SystemRole[] = [
|
||||
{ id: '1', name: '超级管理员', code: 'super_admin', sort: 0, createdAt: mockDate(120), updatedAt: mockDate(1) },
|
||||
{ id: '2', name: '运营', code: 'operator', sort: 1, createdAt: mockDate(90), updatedAt: mockDate(1) },
|
||||
{ id: '3', name: '编辑', code: 'editor', sort: 2, createdAt: mockDate(90), updatedAt: mockDate(1) },
|
||||
{ id: '4', name: '访客', code: 'guest', sort: 3, createdAt: mockDate(60), updatedAt: mockDate(1) },
|
||||
]
|
||||
Reference in New Issue
Block a user