import { ApiService } from "./api.service"; export declare class AreaService { apiService: ApiService; cacheArea: any; constructor(apiService: ApiService); selectBoxHandler(): any; /** * 根据code回显名称getAreaByCode */ selectBoxLabelHandler(): any; /** * 设置缓存 * @param code 编码 * @param data 区域数组 */ setCache(code: string, data: any): void; /** *获取缓存 * @param code 编码 */ getCache(code: string): any; }