data.tsx 299 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 11 12 13 14 export const cardList = (() => { const result: any[] = []; for (let i = 0; i < 12; i++) { result.push({ title: 'Jeecg Admin', icon: 'logos:vue', color: '#1890ff', active: '100', new: '1,799', download: 'bx:bx-download', }); } return result; })();