1
0
mirror of https://github.com/fumiama/paper-manager.git synced 2026-06-27 22:30:28 +08:00

优化 filelist, add settings

This commit is contained in:
源文雨
2023-03-15 15:11:24 +08:00
parent 1dfebb09e2
commit 513680bdb1
28 changed files with 1098 additions and 226 deletions

View File

@@ -1,15 +1,15 @@
export const cardList = (() => {
const result: any[] = []
for (let i = 0; i < 6; i++) {
for (let i = 0; i < 100; i++) {
result.push({
id: i,
title: 'Vben Admin',
description: '基于Vue Next, TypeScript, Ant Design Vue实现的一套完整的企业级后台管理系统',
datetime: '2020-11-26 17:39',
icon: 'logos:vue',
icon: 'bi:filetype-docx',
color: '#1890ff',
author: 'Vben',
percent: 20 * (i + 1),
percent: i,
})
}
return result