import { Injectable } from '@angular/core'; @Injectable({ providedIn: 'root' }) export class PatternService { static isProd: any = true; constructor() { } public isProd: boolean = true //是否是生产环境 }