export interface State { shopList: Readonly //店铺列表 buildingList: Building[] //楼栋列表 columnList: Featured[] //推荐页的卡片 facilityList: Facility[] //设施列表 language: Language //语言 zh: 简体中文 en: 英文 tw: 繁体中文 config: Config //配置文件 mapStatus: boolean //地图加载是否成功 currentFloor: CurrentFloor //当前设备信息 shop: Shop //店铺信息 } export const state = (): State => ({ shopList: [], buildingList: [], columnList: [], facilityList: [], language: 'zh', config: {} as Config, mapStatus: false, currentFloor: {} as CurrentFloor, shop: {} as Shop })