From 4156fed8a32e81a61b706b8a17876f7a1fdcabb7 Mon Sep 17 00:00:00 2001 From: xufenglei <xufenglei> Date: Wed, 27 Dec 2017 15:45:16 +0800 Subject: [PATCH] 安装 用户更新 --- src/app/routes/users/installer/edit/edit.component.ts | 36 +++++++++++++++++++++++++++--------- 1 files changed, 27 insertions(+), 9 deletions(-) diff --git a/src/app/routes/users/installer/edit/edit.component.ts b/src/app/routes/users/installer/edit/edit.component.ts index f9a4bd2..fa8d5ff 100644 --- a/src/app/routes/users/installer/edit/edit.component.ts +++ b/src/app/routes/users/installer/edit/edit.component.ts @@ -2,6 +2,8 @@ import { Component, OnInit } from '@angular/core'; import { ModalHelper } from '@delon/theme'; import { HttpClient } from '@angular/common/http'; +import { environment } from '../../../../../environments/environment'; +import { DateService } from '../../../../core/services/date.service'; @Component({ selector: 'app-edit', @@ -15,22 +17,38 @@ constructor( private modalHelper: ModalHelper, private subject: NzModalSubject, + public dateSrv: DateService, public msgSrv: NzMessageService, public http: HttpClient) { } ngOnInit() { - if (this.user.id > 0) { - this.http.get('http://localhost:8001/user/operate_user/' + this.user.id).subscribe((res: any) => { - this.user = res.data[0]; - }); - } +// if (this.user.id > 0) { +// this.http.get(environment.SERVER_BASH_URL + '/user/operate_user/' + this.user.id).subscribe((res: any) => { +// this.user = res; +// this.user.createTime = this.dateSrv.date_format(this.user.createTime, 'YYYY-MM-DD'); +// this.user.expireTime = this.dateSrv.date_format(this.user.expireTime, 'YYYY-MM-DD'); +// }); +// } else { +// this.user.createTime = this.dateSrv.today('YYYY-MM-DD'); +// this.user.expireTime = this.dateSrv.today('YYYY-MM-DD'); +// } } save() { - this.http.post('http://localhost:8001/user/operate_user/save', this.user).subscribe(() => { - this.subject.next('true'); - this.close(); - }); + if (this.user.name == null || this.user.name === '') { + this.msgSrv.error('���������������'); + } else if (this.user.mobile == null || this.user.mobile === '') { + this.msgSrv.error('���������������'); + } else if (this.user.email == null || this.user.email === '') { + this.msgSrv.error('���������������������'); + } else if (this.user.password == null || this.user.password === '') { + this.msgSrv.error('���������������'); + } else { + this.http.post(environment.SERVER_BASH_URL + '/operateUser/operateUser', this.user).subscribe(() => { + this.subject.next('true'); + this.close(); + }); + } } close() { -- Gitblit v1.8.0