From af95e3f15895995607604ecf0e757c48169795b3 Mon Sep 17 00:00:00 2001
From: xufenglei <xufenglei>
Date: Thu, 05 Jul 2018 15:00:27 +0800
Subject: [PATCH] 修复 区域为空拼接问题
---
src/app/business/business.module.ts | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/app/business/business.module.ts b/src/app/business/business.module.ts
index a0e0997..06a2eb0 100644
--- a/src/app/business/business.module.ts
+++ b/src/app/business/business.module.ts
@@ -1,6 +1,6 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
-import { HttpModule } from '@angular/http';
+
// Statics
import 'rxjs/add/observable/throw';
@@ -12,11 +12,11 @@
import 'rxjs/add/operator/switchMap';
import 'rxjs/add/operator/toPromise';
import 'rxjs/add/operator/filter';
+import { LocalStorageStore } from '@delon/auth';
@NgModule({
imports: [
- CommonModule,
- HttpModule
- ]
+ CommonModule,
+ ],
})
export class BusinessModule { }
--
Gitblit v1.8.0