| | |
| | | import { NzModalSubject, NzMessageService } from 'ng-zorro-antd'; |
| | | import { HttpClient } from '@angular/common/http'; |
| | | import { Component, OnInit } from '@angular/core'; |
| | | import { _HttpClient } from '@delon/theme'; |
| | | import { ModalHelper } from '@delon/theme'; |
| | | import { HttpClient } from '@angular/common/http'; |
| | | import { environment } from '../../../../../environments/environment'; |
| | | |
| | | @Component({ |
| | | selector: 'app-edit', |
| | |
| | | export class UserInstallerEditComponent implements OnInit { |
| | | |
| | | user: any; |
| | | gender: string[] = [ '男', '女' ]; |
| | | |
| | | constructor( |
| | | private modalHelper: ModalHelper, |
| | | private subject: NzModalSubject, |
| | | public msgSrv: NzMessageService, |
| | | public http: _HttpClient) { } |
| | | public http: HttpClient) { } |
| | | |
| | | ngOnInit() { |
| | | if (this.user.id > 0) { |
| | | this.http.get('./assets/pois.json').subscribe(res => this.user = res.data[0]); |
| | | this.http.get(environment.SERVER_BASH_URL + '/user/operate_user/' + this.user.id).subscribe((res: any) => { |
| | | this.user = res.data[0]; |
| | | }); |
| | | } |
| | | } |
| | | |
| | | save() { |
| | | this.http.get('./assets/pois.json').subscribe(() => { |
| | | this.msgSrv.success('保存成功,只是模拟,实际未变更'); |
| | | this.http.post(environment.SERVER_BASH_URL + '/user/operate_user/save', this.user).subscribe(() => { |
| | | this.subject.next('true'); |
| | | this.close(); |
| | | }); |