From 15603ec485e101a3d74b8a51a623e33d964345e7 Mon Sep 17 00:00:00 2001 From: fengxiang <110431245@qq.com> Date: Wed, 20 Dec 2017 16:04:28 +0800 Subject: [PATCH] cs --- src/app/routes/users/installer/edit/edit.component.ts | 22 ++++++++++++++++++---- 1 files changed, 18 insertions(+), 4 deletions(-) diff --git a/src/app/routes/users/installer/edit/edit.component.ts b/src/app/routes/users/installer/edit/edit.component.ts index 9d5b573..71e0c3b 100644 --- a/src/app/routes/users/installer/edit/edit.component.ts +++ b/src/app/routes/users/installer/edit/edit.component.ts @@ -28,14 +28,28 @@ 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(environment.SERVER_BASH_URL + '/user/operate_user/save', this.user).subscribe(() => { - this.subject.next('true'); - this.close(); - }); + console.log(this.user); + 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 + '/user/operate_user/save', this.user).subscribe(() => { + this.subject.next('true'); + this.close(); + }); + } } close() { -- Gitblit v1.8.0