// 排行榜表 import { readJsonFile } from '../util' import { FILENAME } from '../../consts' export interface DicRank { // 排行榜id readonly id: number; // 属于哪个页签 readonly group: number; // 总览中的位置 readonly general: number; } const str = readJsonFile(FILENAME.DIC_RANK); let arr = JSON.parse(str); export const dicRank = new Array(); arr.forEach(o => { dicRank.push(o); }); arr = undefined;