mirror of
https://github.com/fumiama/paper-manager.git
synced 2026-06-26 05:42:23 +08:00
add filelist
This commit is contained in:
17
frontend/vben/src/views/page/filelist/data.tsx
Normal file
17
frontend/vben/src/views/page/filelist/data.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
export const cardList = (() => {
|
||||
const result: any[] = []
|
||||
for (let i = 0; i < 6; i++) {
|
||||
result.push({
|
||||
id: i,
|
||||
title: 'Vben Admin',
|
||||
description: '基于Vue Next, TypeScript, Ant Design Vue实现的一套完整的企业级后台管理系统',
|
||||
datetime: '2020-11-26 17:39',
|
||||
extra: '编辑',
|
||||
icon: 'logos:vue',
|
||||
color: '#1890ff',
|
||||
author: 'Vben',
|
||||
percent: 20 * (i + 1),
|
||||
})
|
||||
}
|
||||
return result
|
||||
})()
|
||||
Reference in New Issue
Block a user