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/routes/systems/organization/organization-edit/organization-edit.component.ts | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/routes/systems/organization/organization-edit/organization-edit.component.ts b/src/app/routes/systems/organization/organization-edit/organization-edit.component.ts index 03a2dd4..50d8b5a 100644 --- a/src/app/routes/systems/organization/organization-edit/organization-edit.component.ts +++ b/src/app/routes/systems/organization/organization-edit/organization-edit.component.ts @@ -1,5 +1,5 @@ -import { Organization } from './../organization.component'; -import { AreacodeService } from './../../../../core/services/areacode.service'; +import { Organization } from '@business/entity/data'; +import { AreacodeService } from '@business/services/http/areacode.service'; import { Component, OnInit } from '@angular/core'; import { NzMessageService, NzModalSubject } from 'ng-zorro-antd'; import { FormGroup, FormBuilder, FormControl, Validators } from '@angular/forms'; @@ -75,7 +75,7 @@ } } ); this.subject.next( this ); - }else { + } else { this.validate(); } } -- Gitblit v1.8.0