/** * 错误主题 */ export const UniErrorSubject = 'uni-exit'; /** * 错误码 * @UniError */ export const UniErrors:Map<number, string> = new Map([ /** * 系统不支持 */ [12001, 'system not support'], /** * 未知错误 */ [12002, 'unknown error'] ]);