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