/* * @Author: Maple * @Date: 2021-03-22 09:50:07 * @LastEditors: Do not edit * @LastEditTime: 2021-05-27 11:37:17 * @Description:全局环境服务 */ import { Injectable } from '@angular/core'; @Injectable({ providedIn: 'root', }) export class EnvironmentService { // 应用ID private appId = `5800BF51DC9A494489700F09E3B81520`; // 租户ID private tenantId = `1352892699355607041`; private env: { appId: string; tenantId: string } = { appId: this.appId, tenantId: this.tenantId }; constructor() { this.setEnvironment(this.appId, this.tenantId); } /** * 设置环境信息 * @param appId 应用ID * @param tenantId 租户ID */ setEnvironment(appId: string, tenantId: string): void { this.env = { appId, tenantId }; } /** * 获取环境信息 * @returns 环境信息 */ getEnvironment() { return this.env; } }